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