Package iofXml.v3

Enum Class EventClassStatus

java.lang.Object
java.lang.Enum<EventClassStatus>
iofXml.v3.EventClassStatus
All Implemented Interfaces:
Serializable, Comparable<EventClassStatus>, Constable

public enum EventClassStatus extends 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 Details

    • NORMAL

      public static final EventClassStatus NORMAL
      The default status.
    • DIVIDED

      public static final EventClassStatus DIVIDED
      The class has been divided in two or more classes due to a large number of entries.
    • JOINED

      public static final EventClassStatus JOINED
      The class has been joined with another class due to a small number of entries.
    • INVALIDATED

      public static final EventClassStatus INVALIDATED
      The results are considered invalid due to technical issues such as misplaced controls. Entry fees are not refunded.
    • INVALIDATED_NO_FEE

      public static final EventClassStatus INVALIDATED_NO_FEE
      The results are considered invalid due to technical issues such as misplaced controls. Entry fees are refunded.
  • Method Details

    • values

      public static EventClassStatus[] 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

      public static EventClassStatus valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • value

      public String value()
      Gets the value associated to the enum constant.
      Returns:
      The value linked to the enum.
    • fromValue

      public 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:
      The enum which corresponds to the value, if it exists.
      Throws:
      IllegalArgumentException - If no value matches in the enum declaration.