- All Implemented Interfaces:
Serializable
,Comparable<ECDB.AttendeeState>
- Enclosing class:
- ECDB
Attendee state.
Provided as a type-safe alternative to string values in the
databasse.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAn entry in the attendee table is an active entry.An entry in the attendee table has ben cancelled.An entry in the attendee table is in the process of being cancelled. -
Method Summary
Modifier and TypeMethodDescriptionstatic ECDB.AttendeeState
Returns the enum constant of this type with the specified name.static ECDB.AttendeeState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ACTIVE
An entry in the attendee table is an active entry. -
CANCELLING
An entry in the attendee table is in the process of being cancelled. -
CANCELLED
An entry in the attendee table has ben cancelled. It may be subsequently deleted.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-