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

java.lang.Object
  extended by java.lang.Enum<IEditAction.NetCallMechanism>
      extended by com.azalient.api.ui.edit.IEditAction.NetCallMechanism
All Implemented Interfaces:
Serializable, Comparable<IEditAction.NetCallMechanism>
Enclosing interface:
IEditAction

public static enum IEditAction.NetCallMechanism
extends Enum<IEditAction.NetCallMechanism>

The call mechanism for network-based (model-based) actions


Enum Constant Summary
CALL_WITH_ALL
           
CALL_WITH_FIRST_N
           
NO_CALL
           
 
Method Summary
static IEditAction.NetCallMechanism valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IEditAction.NetCallMechanism[] 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.NetCallMechanism NO_CALL

CALL_WITH_ALL

public static final IEditAction.NetCallMechanism CALL_WITH_ALL

CALL_WITH_FIRST_N

public static final IEditAction.NetCallMechanism CALL_WITH_FIRST_N
Method Detail

values

public static IEditAction.NetCallMechanism[] 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.NetCallMechanism c : IEditAction.NetCallMechanism.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.NetCallMechanism 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