public enum CustomOperationScope extends java.lang.Enum<CustomOperationScope>
| Enum Constant and Description |
|---|
ADVERTISEMENT
A custom operation which is visible in an advertisement
|
INTERNAL
A custom operation which is executed by another custom operation
|
MENU
A custom operation which is visible in a custom menu item
|
SYSTEM
A general, system custom operation
|
USER
A custom operation over a single user
|
| Modifier and Type | Method and Description |
|---|---|
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 MENU
public static final CustomOperationScope INTERNAL
public static final CustomOperationScope ADVERTISEMENT
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 null