Package net.officefloor.model.conform
Enum TargetItemModel.TargetItemEvent
- java.lang.Object
-
- java.lang.Enum<TargetItemModel.TargetItemEvent>
-
- net.officefloor.model.conform.TargetItemModel.TargetItemEvent
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TargetItemModel.TargetItemEvent>
- Enclosing class:
- TargetItemModel
public static enum TargetItemModel.TargetItemEvent extends java.lang.Enum<TargetItemModel.TargetItemEvent>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHANGE_EXISTING_ITEM
CHANGE_INHERIT
CHANGE_IS_INHERITABLE
CHANGE_TARGET_ITEM_NAME
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TargetItemModel.TargetItemEvent
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TargetItemModel.TargetItemEvent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHANGE_TARGET_ITEM_NAME
public static final TargetItemModel.TargetItemEvent CHANGE_TARGET_ITEM_NAME
-
CHANGE_IS_INHERITABLE
public static final TargetItemModel.TargetItemEvent CHANGE_IS_INHERITABLE
-
CHANGE_INHERIT
public static final TargetItemModel.TargetItemEvent CHANGE_INHERIT
-
CHANGE_EXISTING_ITEM
public static final TargetItemModel.TargetItemEvent CHANGE_EXISTING_ITEM
-
-
Method Detail
-
values
public static TargetItemModel.TargetItemEvent[] 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 (TargetItemModel.TargetItemEvent c : TargetItemModel.TargetItemEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TargetItemModel.TargetItemEvent 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
-
-