Package iofXml.v3
Enum Class EventClassStatus
- All Implemented Interfaces:
Serializable,Comparable<EventClassStatus>,Constable
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>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe class has been divided in two or more classes due to a large number of entries.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 has been joined with another class due to a small number of entries.The default status. -
Method Summary
Modifier and TypeMethodDescriptionstatic EventClassStatusGets the enum associated to the value passed as parameter.value()Gets the value associated to the enum constant.static EventClassStatusReturns the enum constant of this class with the specified name.static EventClassStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
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 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.
-