com.azalient.api.ui.edit
Enum IEditAction.ObjectCallMechanism
java.lang.Object
java.lang.Enum<IEditAction.ObjectCallMechanism>
com.azalient.api.ui.edit.IEditAction.ObjectCallMechanism
- All Implemented Interfaces:
- Serializable, Comparable<IEditAction.ObjectCallMechanism>
- Enclosing interface:
- IEditAction
public static enum IEditAction.ObjectCallMechanism
- extends Enum<IEditAction.ObjectCallMechanism>
The call mechanism for object-based actions.
NO_CALL
public static final IEditAction.ObjectCallMechanism NO_CALL
CALL_ALL_INDIVIDUALLY
public static final IEditAction.ObjectCallMechanism CALL_ALL_INDIVIDUALLY
CALL_FIRST_ONLY
public static final IEditAction.ObjectCallMechanism CALL_FIRST_ONLY
values
public static IEditAction.ObjectCallMechanism[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (IEditAction.ObjectCallMechanism c : IEditAction.ObjectCallMechanism.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static IEditAction.ObjectCallMechanism valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null