Enum ControllerEvent
- java.lang.Object
-
- java.lang.Enum<ControllerEvent>
-
- com.bluelinelabs.conductor.rxlifecycle2.ControllerEvent
-
- All Implemented Interfaces:
Serializable,Comparable<ControllerEvent>
public enum ControllerEvent extends Enum<ControllerEvent>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ATTACHCONTEXT_AVAILABLECONTEXT_UNAVAILABLECREATECREATE_VIEWDESTROYDESTROY_VIEWDETACH
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ControllerEventvalueOf(String name)Returns the enum constant of this type with the specified name.static ControllerEvent[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE
public static final ControllerEvent CREATE
-
CONTEXT_AVAILABLE
public static final ControllerEvent CONTEXT_AVAILABLE
-
CREATE_VIEW
public static final ControllerEvent CREATE_VIEW
-
ATTACH
public static final ControllerEvent ATTACH
-
DETACH
public static final ControllerEvent DETACH
-
DESTROY_VIEW
public static final ControllerEvent DESTROY_VIEW
-
CONTEXT_UNAVAILABLE
public static final ControllerEvent CONTEXT_UNAVAILABLE
-
DESTROY
public static final ControllerEvent DESTROY
-
-
Method Detail
-
values
public static ControllerEvent[] 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 (ControllerEvent c : ControllerEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ControllerEvent 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 nameNullPointerException- if the argument is null
-
-