public static enum RogLog.CheckpointState extends Enum<RogLog.CheckpointState>
Enum Constant and Description |
---|
AllEntriesCheckpointed
Indicates that all entries in the log have a checkpoint version
|
NoEntriesCheckpointed
Indicates that no entries in the log have a checkpoint version
i.e. all entries have checkpoint <= 0
|
Pending
Indicates that the log has not been opened or has been opened
and is empty and, therefore, whether the log is checkpointed or
not is awaiting the log to be opened and/or first entry to be
written to the log
|
Modifier and Type | Method and Description |
---|---|
static RogLog.CheckpointState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RogLog.CheckpointState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RogLog.CheckpointState Pending
public static final RogLog.CheckpointState AllEntriesCheckpointed
public static final RogLog.CheckpointState NoEntriesCheckpointed
public static RogLog.CheckpointState[] values()
for (RogLog.CheckpointState c : RogLog.CheckpointState.values()) System.out.println(c);
public static RogLog.CheckpointState 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 nullCopyright © 2019 Neeve Research, LLC. All Rights Reserved.