Package iofXml.v3
Enum Class RaceClassStatus
- All Implemented Interfaces:
Serializable,Comparable<RaceClassStatus>,Constable
The status of a certain race in the class.
Java class for RaceClassStatus
.The following schema fragment specifies the expected content contained within this class.
<simpleType name="RaceClassStatus">
<restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
<enumeration value="StartTimesNotAllocated"/>
<enumeration value="StartTimesAllocated"/>
<enumeration value="NotUsed"/>
<enumeration value="Completed"/>
<enumeration value="Invalidated"/>
<enumeration value="InvalidatedNoFee"/>
</restriction>
</simpleType>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe result list is complete for this class in this race.The results are considered invalid due to technical issues such as misplaced controls.The results are considered invalid due to technical issues such as misplaced controls.The class is not organised in this race, e.g.The start list draw has been made for this class in this race.The start list draw has not been made for this class in this race. -
Method Summary
Modifier and TypeMethodDescriptionstatic RaceClassStatusGets the enum associated to the value passed as parameter.value()Gets the value associated to the enum constant.static RaceClassStatusReturns the enum constant of this class with the specified name.static RaceClassStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
START_TIMES_NOT_ALLOCATED
The start list draw has not been made for this class in this race. -
START_TIMES_ALLOCATED
The start list draw has been made for this class in this race. -
NOT_USED
The class is not organised in this race, e.g. for classes that are organised in only some of the races in a multi-race event. -
COMPLETED
The result list is complete for this class in this race. -
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 Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
value
Gets the value associated to the enum constant.- Returns:
- The value linked to the enum.
-
fromValue
Gets the enum associated to the value passed as parameter.- Parameters:
v- The value to get the enum from.- Returns:
- The enum which corresponds to the value, if it exists.
- Throws:
IllegalArgumentException- If no value matches in the enum declaration.
-