public enum CustomOperationScope extends java.lang.Enum<CustomOperationScope> implements HasMessageKey
| Enum Constant and Description |
|---|
ADVERTISEMENT
A custom operation which can be executed from an advertisement
|
BULK_ACTION
A custom operation to be executed as a bulk action over a set of users
|
INTERNAL
A custom operation which is executed by another custom operation
|
MENU
A custom operation which is visible in a custom menu item
|
RECORD
A custom operation which can be executed from a record
|
SYSTEM
A general, system custom operation
|
USER
A custom operation over a single user
|
| Modifier and Type | Method and Description |
|---|---|
MessageKey |
getMessageKey() |
static CustomOperationScope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CustomOperationScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomOperationScope SYSTEM
public static final CustomOperationScope USER
public static final CustomOperationScope BULK_ACTION
public static final CustomOperationScope MENU
public static final CustomOperationScope INTERNAL
public static final CustomOperationScope ADVERTISEMENT
public static final CustomOperationScope RECORD
public static CustomOperationScope[] values()
for (CustomOperationScope c : CustomOperationScope.values()) System.out.println(c);
public static CustomOperationScope valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic MessageKey getMessageKey()
getMessageKey in interface HasMessageKey