public enum CustomOperationResultPageRowAction extends java.lang.Enum<CustomOperationResultPageRowAction>
| Enum Constant and Description |
|---|
LOCATION
Navigate to a standard Cyclos location
|
OPERATION
Run an internal custom operation, which is set on the custom operation itself
|
URL
Navigate to an arbitrary URL, which is set in the custom operation itself
|
| Modifier and Type | Method and Description |
|---|---|
static CustomOperationResultPageRowAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CustomOperationResultPageRowAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomOperationResultPageRowAction URL
public static final CustomOperationResultPageRowAction LOCATION
public static final CustomOperationResultPageRowAction OPERATION
public static CustomOperationResultPageRowAction[] values()
for (CustomOperationResultPageRowAction c : CustomOperationResultPageRowAction.values()) System.out.println(c);
public static CustomOperationResultPageRowAction 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