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