Package net.officefloor.model.section
Enum SubSectionInputModel.SubSectionInputEvent
- java.lang.Object
-
- java.lang.Enum<SubSectionInputModel.SubSectionInputEvent>
-
- net.officefloor.model.section.SubSectionInputModel.SubSectionInputEvent
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SubSectionInputModel.SubSectionInputEvent>
- Enclosing class:
- SubSectionInputModel
public static enum SubSectionInputModel.SubSectionInputEvent extends java.lang.Enum<SubSectionInputModel.SubSectionInputEvent>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SubSectionInputModel.SubSectionInputEvent
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SubSectionInputModel.SubSectionInputEvent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHANGE_SUB_SECTION_INPUT_NAME
public static final SubSectionInputModel.SubSectionInputEvent CHANGE_SUB_SECTION_INPUT_NAME
-
CHANGE_PARAMETER_TYPE
public static final SubSectionInputModel.SubSectionInputEvent CHANGE_PARAMETER_TYPE
-
CHANGE_IS_PUBLIC
public static final SubSectionInputModel.SubSectionInputEvent CHANGE_IS_PUBLIC
-
CHANGE_PUBLIC_INPUT_NAME
public static final SubSectionInputModel.SubSectionInputEvent CHANGE_PUBLIC_INPUT_NAME
-
ADD_SUB_SECTION_OUTPUT
public static final SubSectionInputModel.SubSectionInputEvent ADD_SUB_SECTION_OUTPUT
-
REMOVE_SUB_SECTION_OUTPUT
public static final SubSectionInputModel.SubSectionInputEvent REMOVE_SUB_SECTION_OUTPUT
-
ADD_SECTION_MANAGED_OBJECT_SOURCE_FLOW
public static final SubSectionInputModel.SubSectionInputEvent ADD_SECTION_MANAGED_OBJECT_SOURCE_FLOW
-
REMOVE_SECTION_MANAGED_OBJECT_SOURCE_FLOW
public static final SubSectionInputModel.SubSectionInputEvent REMOVE_SECTION_MANAGED_OBJECT_SOURCE_FLOW
-
ADD_PREVIOUS_FUNCTION
public static final SubSectionInputModel.SubSectionInputEvent ADD_PREVIOUS_FUNCTION
-
REMOVE_PREVIOUS_FUNCTION
public static final SubSectionInputModel.SubSectionInputEvent REMOVE_PREVIOUS_FUNCTION
-
ADD_FUNCTION_FLOW
public static final SubSectionInputModel.SubSectionInputEvent ADD_FUNCTION_FLOW
-
REMOVE_FUNCTION_FLOW
public static final SubSectionInputModel.SubSectionInputEvent REMOVE_FUNCTION_FLOW
-
ADD_FUNCTION_ESCALATION
public static final SubSectionInputModel.SubSectionInputEvent ADD_FUNCTION_ESCALATION
-
REMOVE_FUNCTION_ESCALATION
public static final SubSectionInputModel.SubSectionInputEvent REMOVE_FUNCTION_ESCALATION
-
-
Method Detail
-
values
public static SubSectionInputModel.SubSectionInputEvent[] 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 (SubSectionInputModel.SubSectionInputEvent c : SubSectionInputModel.SubSectionInputEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SubSectionInputModel.SubSectionInputEvent 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
-
-