Package net.officefloor.activity.model
Enum ActivitySectionInputModel.ActivitySectionInputEvent
- java.lang.Object
-
- java.lang.Enum<ActivitySectionInputModel.ActivitySectionInputEvent>
-
- net.officefloor.activity.model.ActivitySectionInputModel.ActivitySectionInputEvent
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ActivitySectionInputModel.ActivitySectionInputEvent>
- Enclosing class:
- ActivitySectionInputModel
public static enum ActivitySectionInputModel.ActivitySectionInputEvent extends java.lang.Enum<ActivitySectionInputModel.ActivitySectionInputEvent>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ActivitySectionInputModel.ActivitySectionInputEvent
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ActivitySectionInputModel.ActivitySectionInputEvent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHANGE_ACTIVITY_SECTION_INPUT_NAME
public static final ActivitySectionInputModel.ActivitySectionInputEvent CHANGE_ACTIVITY_SECTION_INPUT_NAME
-
CHANGE_PARAMETER_TYPE
public static final ActivitySectionInputModel.ActivitySectionInputEvent CHANGE_PARAMETER_TYPE
-
ADD_ACTIVITY_SECTION_OUTPUT
public static final ActivitySectionInputModel.ActivitySectionInputEvent ADD_ACTIVITY_SECTION_OUTPUT
-
REMOVE_ACTIVITY_SECTION_OUTPUT
public static final ActivitySectionInputModel.ActivitySectionInputEvent REMOVE_ACTIVITY_SECTION_OUTPUT
-
ADD_ACTIVITY_PROCEDURE_NEXT
public static final ActivitySectionInputModel.ActivitySectionInputEvent ADD_ACTIVITY_PROCEDURE_NEXT
-
REMOVE_ACTIVITY_PROCEDURE_NEXT
public static final ActivitySectionInputModel.ActivitySectionInputEvent REMOVE_ACTIVITY_PROCEDURE_NEXT
-
ADD_ACTIVITY_PROCEDURE_OUTPUT
public static final ActivitySectionInputModel.ActivitySectionInputEvent ADD_ACTIVITY_PROCEDURE_OUTPUT
-
REMOVE_ACTIVITY_PROCEDURE_OUTPUT
public static final ActivitySectionInputModel.ActivitySectionInputEvent REMOVE_ACTIVITY_PROCEDURE_OUTPUT
-
ADD_ACTIVITY_EXCEPTION
public static final ActivitySectionInputModel.ActivitySectionInputEvent ADD_ACTIVITY_EXCEPTION
-
REMOVE_ACTIVITY_EXCEPTION
public static final ActivitySectionInputModel.ActivitySectionInputEvent REMOVE_ACTIVITY_EXCEPTION
-
ADD_ACTIVITY_INPUT
public static final ActivitySectionInputModel.ActivitySectionInputEvent ADD_ACTIVITY_INPUT
-
REMOVE_ACTIVITY_INPUT
public static final ActivitySectionInputModel.ActivitySectionInputEvent REMOVE_ACTIVITY_INPUT
-
-
Method Detail
-
values
public static ActivitySectionInputModel.ActivitySectionInputEvent[] 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 (ActivitySectionInputModel.ActivitySectionInputEvent c : ActivitySectionInputModel.ActivitySectionInputEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActivitySectionInputModel.ActivitySectionInputEvent 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
-
-