Package arez.annotations
Enum Class State
- All Implemented Interfaces:
Serializable
,Comparable<State>
,Constable
Defines the states of a component.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThePostConstruct
method (if any) has been invoked andObserver
s have been scheduled but the scheduler has not been triggered.The reactive elements have been created (i.e.The component is disposing.The scheduler has been triggered and anyObserve
methods have been invoked if runtime managed. -
Method Summary
-
Enum Constant Details
-
CONSTRUCTED
The reactive elements have been created (i.e. theObservableValue
,Observer
,ComputableValue
etc.). ThePostConstruct
method has NOT been invoked. -
COMPLETE
ThePostConstruct
method (if any) has been invoked andObserver
s have been scheduled but the scheduler has not been triggered. -
READY
The scheduler has been triggered and anyObserve
methods have been invoked if runtime managed. -
DISPOSING
The component is disposing.
-
-
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
-