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 SummaryEnum Constants Enum Constant Description ADD_PROPERTY_SOURCEADD_TYPE_QUALIFICATIONCHANGE_QUALIFIERCHANGE_TEAM_SIZECHANGE_TEAM_SOURCE_CLASS_NAMECHANGE_TYPEREMOVE_PROPERTY_SOURCEREMOVE_TYPE_QUALIFICATION
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static WoofTeamModel.WoofTeamEventvalueOf(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_SIZEpublic static final WoofTeamModel.WoofTeamEvent CHANGE_TEAM_SIZE 
 - 
CHANGE_TEAM_SOURCE_CLASS_NAMEpublic static final WoofTeamModel.WoofTeamEvent CHANGE_TEAM_SOURCE_CLASS_NAME 
 - 
CHANGE_QUALIFIERpublic static final WoofTeamModel.WoofTeamEvent CHANGE_QUALIFIER 
 - 
CHANGE_TYPEpublic static final WoofTeamModel.WoofTeamEvent CHANGE_TYPE 
 - 
ADD_PROPERTY_SOURCEpublic static final WoofTeamModel.WoofTeamEvent ADD_PROPERTY_SOURCE 
 - 
REMOVE_PROPERTY_SOURCEpublic static final WoofTeamModel.WoofTeamEvent REMOVE_PROPERTY_SOURCE 
 - 
ADD_TYPE_QUALIFICATIONpublic static final WoofTeamModel.WoofTeamEvent ADD_TYPE_QUALIFICATION 
 - 
REMOVE_TYPE_QUALIFICATIONpublic static final WoofTeamModel.WoofTeamEvent REMOVE_TYPE_QUALIFICATION 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-