Package com.iizix.prop
Enum BinderAction.ActionPerformed
- java.lang.Object
-
- java.lang.Enum<BinderAction.ActionPerformed>
-
- com.iizix.prop.BinderAction.ActionPerformed
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BinderAction.ActionPerformed>
- Enclosing class:
- BinderAction
public static enum BinderAction.ActionPerformed extends java.lang.Enum<BinderAction.ActionPerformed>
The various actions that can be performed.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASSIGNED
CONTAINER_CHANGED
CONVERSION_ERROR
ERROR
FIELD_NOT_FOUND
NO_CHANGE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BinderAction.ActionPerformed
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BinderAction.ActionPerformed[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_CHANGE
public static final BinderAction.ActionPerformed NO_CHANGE
-
CONTAINER_CHANGED
public static final BinderAction.ActionPerformed CONTAINER_CHANGED
-
ERROR
public static final BinderAction.ActionPerformed ERROR
-
CONVERSION_ERROR
public static final BinderAction.ActionPerformed CONVERSION_ERROR
-
ASSIGNED
public static final BinderAction.ActionPerformed ASSIGNED
-
FIELD_NOT_FOUND
public static final BinderAction.ActionPerformed FIELD_NOT_FOUND
-
-
Method Detail
-
values
public static BinderAction.ActionPerformed[] 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 (BinderAction.ActionPerformed c : BinderAction.ActionPerformed.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BinderAction.ActionPerformed valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-