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