public static enum LogicalClock.State extends Enum<LogicalClock.State>
Enum Constant and Description |
---|
Idle
Clock state for logical timestamps when the associated
LiveTableMonitor is not propagating updates. |
Updating
Clock state for logical timestamps when the associated
LiveTableMonitor is propagating updates. |
Modifier and Type | Method and Description |
---|---|
static LogicalClock.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogicalClock.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogicalClock.State Updating
LiveTableMonitor
is propagating updates.public static final LogicalClock.State Idle
LiveTableMonitor
is not propagating updates.public static LogicalClock.State[] values()
for (LogicalClock.State c : LogicalClock.State.values()) System.out.println(c);
public static LogicalClock.State valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null