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