| Enum Constant and Description |
|---|
ACTIVE
A Dot in this State currently reflects the active parameters, and is not transitioning.
|
INACTIVE
A Dot in this State currently reflects the inactive parameters, and is not
transitioning.
|
TRANSITIONING_TO_ACTIVE
A Dot in this State does not currently reflect either the active or inactive parameters,
and is transitioning to the active state.
|
TRANSITIONING_TO_INACTIVE
A Dot in this State does not currently reflect either the active or inactive parameters,
and is transitioning to the inactive state.
|
| Modifier and Type | Method and Description |
|---|---|
protected boolean |
isStable() |
protected Dot.State |
transitioningFrom() |
protected Dot.State |
transitioningTo() |
static Dot.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Dot.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dot.State INACTIVE
public static final Dot.State ACTIVE
public static final Dot.State TRANSITIONING_TO_ACTIVE
public static final Dot.State TRANSITIONING_TO_INACTIVE
public static Dot.State[] values()
for (Dot.State c : Dot.State.values()) System.out.println(c);
public static Dot.State 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 nullprotected boolean isStable()
protected Dot.State transitioningTo()
protected Dot.State transitioningFrom()