Package net.officefloor.model.section
Enum FunctionModel.FunctionEvent
- java.lang.Object
-
- java.lang.Enum<FunctionModel.FunctionEvent>
-
- net.officefloor.model.section.FunctionModel.FunctionEvent
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FunctionModel.FunctionEvent>
- Enclosing class:
- FunctionModel
public static enum FunctionModel.FunctionEvent extends java.lang.Enum<FunctionModel.FunctionEvent>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FunctionModel.FunctionEvent
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FunctionModel.FunctionEvent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHANGE_FUNCTION_NAME
public static final FunctionModel.FunctionEvent CHANGE_FUNCTION_NAME
-
CHANGE_IS_PUBLIC
public static final FunctionModel.FunctionEvent CHANGE_IS_PUBLIC
-
CHANGE_FUNCTION_NAMESPACE_NAME
public static final FunctionModel.FunctionEvent CHANGE_FUNCTION_NAMESPACE_NAME
-
CHANGE_MANAGED_FUNCTION_NAME
public static final FunctionModel.FunctionEvent CHANGE_MANAGED_FUNCTION_NAME
-
CHANGE_RETURN_TYPE
public static final FunctionModel.FunctionEvent CHANGE_RETURN_TYPE
-
CHANGE_MANAGED_FUNCTION
public static final FunctionModel.FunctionEvent CHANGE_MANAGED_FUNCTION
-
CHANGE_NEXT_FUNCTION
public static final FunctionModel.FunctionEvent CHANGE_NEXT_FUNCTION
-
CHANGE_NEXT_EXTERNAL_FLOW
public static final FunctionModel.FunctionEvent CHANGE_NEXT_EXTERNAL_FLOW
-
CHANGE_NEXT_SUB_SECTION_INPUT
public static final FunctionModel.FunctionEvent CHANGE_NEXT_SUB_SECTION_INPUT
-
ADD_PREVIOUS_FUNCTION
public static final FunctionModel.FunctionEvent ADD_PREVIOUS_FUNCTION
-
REMOVE_PREVIOUS_FUNCTION
public static final FunctionModel.FunctionEvent REMOVE_PREVIOUS_FUNCTION
-
ADD_FUNCTION_FLOW
public static final FunctionModel.FunctionEvent ADD_FUNCTION_FLOW
-
REMOVE_FUNCTION_FLOW
public static final FunctionModel.FunctionEvent REMOVE_FUNCTION_FLOW
-
ADD_FUNCTION_ESCALATION
public static final FunctionModel.FunctionEvent ADD_FUNCTION_ESCALATION
-
REMOVE_FUNCTION_ESCALATION
public static final FunctionModel.FunctionEvent REMOVE_FUNCTION_ESCALATION
-
ADD_FUNCTION_FLOW_INPUT
public static final FunctionModel.FunctionEvent ADD_FUNCTION_FLOW_INPUT
-
REMOVE_FUNCTION_FLOW_INPUT
public static final FunctionModel.FunctionEvent REMOVE_FUNCTION_FLOW_INPUT
-
ADD_FUNCTION_ESCALATION_INPUT
public static final FunctionModel.FunctionEvent ADD_FUNCTION_ESCALATION_INPUT
-
REMOVE_FUNCTION_ESCALATION_INPUT
public static final FunctionModel.FunctionEvent REMOVE_FUNCTION_ESCALATION_INPUT
-
ADD_SUB_SECTION_OUTPUT
public static final FunctionModel.FunctionEvent ADD_SUB_SECTION_OUTPUT
-
REMOVE_SUB_SECTION_OUTPUT
public static final FunctionModel.FunctionEvent REMOVE_SUB_SECTION_OUTPUT
-
ADD_SECTION_MANAGED_OBJECT_SOURCE_FLOW
public static final FunctionModel.FunctionEvent ADD_SECTION_MANAGED_OBJECT_SOURCE_FLOW
-
REMOVE_SECTION_MANAGED_OBJECT_SOURCE_FLOW
public static final FunctionModel.FunctionEvent REMOVE_SECTION_MANAGED_OBJECT_SOURCE_FLOW
-
-
Method Detail
-
values
public static FunctionModel.FunctionEvent[] 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 (FunctionModel.FunctionEvent c : FunctionModel.FunctionEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FunctionModel.FunctionEvent 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
-
-