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