public static enum Reactive.ObserverState extends java.lang.Enum<Reactive.ObserverState>
| Enum Constant and Description |
|---|
OBSERVER_ERROR |
OBSERVER_FINISHED |
OBSERVER_RUNNING |
| Modifier and Type | Method and Description |
|---|---|
static Reactive.ObserverState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Reactive.ObserverState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Reactive.ObserverState OBSERVER_ERROR
public static final Reactive.ObserverState OBSERVER_FINISHED
public static final Reactive.ObserverState OBSERVER_RUNNING
public static Reactive.ObserverState[] values()
for (Reactive.ObserverState c : Reactive.ObserverState.values()) System.out.println(c);
public static Reactive.ObserverState valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null