Package net.officefloor.model.section
Enum FunctionEscalationModel.FunctionEscalationEvent
- java.lang.Object
- 
- java.lang.Enum<FunctionEscalationModel.FunctionEscalationEvent>
- 
- net.officefloor.model.section.FunctionEscalationModel.FunctionEscalationEvent
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<FunctionEscalationModel.FunctionEscalationEvent>
 - Enclosing class:
- FunctionEscalationModel
 
 public static enum FunctionEscalationModel.FunctionEscalationEvent extends java.lang.Enum<FunctionEscalationModel.FunctionEscalationEvent> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description CHANGE_ESCALATION_TYPECHANGE_EXTERNAL_FLOWCHANGE_FUNCTIONCHANGE_SUB_SECTION_INPUT
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static FunctionEscalationModel.FunctionEscalationEventvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FunctionEscalationModel.FunctionEscalationEvent[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
CHANGE_ESCALATION_TYPEpublic static final FunctionEscalationModel.FunctionEscalationEvent CHANGE_ESCALATION_TYPE 
 - 
CHANGE_FUNCTIONpublic static final FunctionEscalationModel.FunctionEscalationEvent CHANGE_FUNCTION 
 - 
CHANGE_EXTERNAL_FLOWpublic static final FunctionEscalationModel.FunctionEscalationEvent CHANGE_EXTERNAL_FLOW 
 - 
CHANGE_SUB_SECTION_INPUTpublic static final FunctionEscalationModel.FunctionEscalationEvent CHANGE_SUB_SECTION_INPUT 
 
- 
 - 
Method Detail- 
valuespublic static FunctionEscalationModel.FunctionEscalationEvent[] 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 (FunctionEscalationModel.FunctionEscalationEvent c : FunctionEscalationModel.FunctionEscalationEvent.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static FunctionEscalationModel.FunctionEscalationEvent 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 name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-