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