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