Enum EventClassStatus
-
- All Implemented Interfaces:
public enum EventClassStatus
The status of the class.
Java class for EventClassStatus
.The following schema fragment specifies the expected content contained within this class.
<simpleType name="EventClassStatus"> <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> <enumeration value="Normal"/> <enumeration value="Divided"/> <enumeration value="Joined"/> <enumeration value="Invalidated"/> <enumeration value="InvalidatedNoFee"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NORMAL
The default status.
DIVIDED
The class has been divided in two or more classes due to a large number of entries.
JOINED
The class has been joined with another class due to a small number of entries.
INVALIDATED
The results are considered invalid due to technical issues such as misplaced controls. Entry fees are not refunded.
INVALIDATED_NO_FEE
The results are considered invalid due to technical issues such as misplaced controls. Entry fees are refunded.
-
Method Summary
Modifier and Type Method Description String
value()
Gets the value associated to the enum constant. static EventClassStatus
fromValue(String v)
Gets the enum associated to the value passed as parameter. static Array<EventClassStatus>
values()
Returns an array containing the constants of this enum type, in the order they're declared. static EventClassStatus
valueOf(String name)
Returns the enum constant of this type with the specified name. -
-
Method Detail
-
value
String value()
Gets the value associated to the enum constant.
- Returns:
Thevalue linked to the enum.
-
fromValue
static EventClassStatus fromValue(String v)
Gets the enum associated to the value passed as parameter.
- Parameters:
v
- The value to get the enum from.- Returns:
Theenum which corresponds to the value, if it exists.
-
values
static Array<EventClassStatus> values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.
- Returns:
an array containing the constants of this enum type, in the order they're declared
-
valueOf
static EventClassStatus valueOf(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.)
- Returns:
the enum constant with the specified name
-
-
-
-