Enum ECDB.AttendeeState

java.lang.Object
java.lang.Enum<ECDB.AttendeeState>
org.bzdev.ecdb.ECDB.AttendeeState
All Implemented Interfaces:
Serializable, Comparable<ECDB.AttendeeState>
Enclosing class:
ECDB

public static enum ECDB.AttendeeState extends Enum<ECDB.AttendeeState>
Attendee state. Provided as a type-safe alternative to string values in the databasse.
  • Enum Constant Details

    • ACTIVE

      public static final ECDB.AttendeeState ACTIVE
      An entry in the attendee table is an active entry.
    • CANCELLING

      public static final ECDB.AttendeeState CANCELLING
      An entry in the attendee table is in the process of being cancelled.
    • CANCELLED

      public static final ECDB.AttendeeState CANCELLED
      An entry in the attendee table has ben cancelled. It may be subsequently deleted.
  • Method Details

    • values

      public static ECDB.AttendeeState[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static ECDB.AttendeeState 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.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null