Package icyllis.modernui.lifecycle
Enum Class Lifecycle.State
- All Implemented Interfaces:
Serializable
,Comparable<Lifecycle.State>
,Constable
- Enclosing class:
Lifecycle
Lifecycle states. You can consider the states as the nodes in a graph and
Lifecycle.Event
s as the edges between these nodes.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionCreated state for a LifecycleOwner.Destroyed state for a LifecycleOwner.Initialized state for a LifecycleOwner.Resumed state for a LifecycleOwner.Started state for a LifecycleOwner. -
Method Summary
Modifier and TypeMethodDescriptionboolean
isAtLeast
(Lifecycle.State state) Compares if this State is greater or equal to the givenstate
.static Lifecycle.State
Returns the enum constant of this class with the specified name.static Lifecycle.State[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DESTROYED
Destroyed state for a LifecycleOwner. After this event, this Lifecycle will not dispatch any more events. -
INITIALIZED
Initialized state for a LifecycleOwner. -
CREATED
Created state for a LifecycleOwner. -
STARTED
Started state for a LifecycleOwner. -
RESUMED
Resumed state for a LifecycleOwner.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
isAtLeast
Compares if this State is greater or equal to the givenstate
.- Parameters:
state
- State to compare with- Returns:
- true if this State is greater or equal to the given
state
-