|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<RogLog.CheckpointState>
com.neeve.rog.log.RogLog.CheckpointState
public static enum RogLog.CheckpointState
Enumerates the state of entries being checkpointed in the log
Enum Constant Summary | |
---|---|
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 |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final RogLog.CheckpointState Pending
public static final RogLog.CheckpointState AllEntriesCheckpointed
public static final RogLog.CheckpointState NoEntriesCheckpointed
Method Detail |
---|
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 name
NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |