Enum Event.EventEnum
- java.lang.Object
-
- java.lang.Enum<Event.EventEnum>
-
- com.stackone.stackone_client_java.models.components.Event.EventEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Event.EventEnum>
- Enclosing class:
- Event
public static enum Event.EventEnum extends java.lang.Enum<Event.EventEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SCREENING_RESULTS_CANCELLEDSCREENING_RESULTS_COMPLETEDSCREENING_RESULTS_CREATEDSCREENING_RESULTS_FAILEDSCREENING_RESULTS_UPDATED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Stringvalue()static Event.EventEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Event.EventEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SCREENING_RESULTS_CREATED
public static final Event.EventEnum SCREENING_RESULTS_CREATED
-
SCREENING_RESULTS_UPDATED
public static final Event.EventEnum SCREENING_RESULTS_UPDATED
-
SCREENING_RESULTS_COMPLETED
public static final Event.EventEnum SCREENING_RESULTS_COMPLETED
-
SCREENING_RESULTS_FAILED
public static final Event.EventEnum SCREENING_RESULTS_FAILED
-
SCREENING_RESULTS_CANCELLED
public static final Event.EventEnum SCREENING_RESULTS_CANCELLED
-
-
Method Detail
-
values
public static Event.EventEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Event.EventEnum c : Event.EventEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Event.EventEnum valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
value
public java.lang.String value()
-
-