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