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