com.azalient.api.ui.edit
Enum IEditAction.ObjectCallMechanism

java.lang.Object
  extended by java.lang.Enum<IEditAction.ObjectCallMechanism>
      extended by 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.


Enum Constant Summary
CALL_ALL_INDIVIDUALLY
           
CALL_FIRST_ONLY
           
NO_CALL
           
 
Method Summary
static IEditAction.ObjectCallMechanism valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IEditAction.ObjectCallMechanism[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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