com.neeve.rog.log
Enum RogLog.CheckpointState

java.lang.Object
  extended by java.lang.Enum<RogLog.CheckpointState>
      extended by com.neeve.rog.log.RogLog.CheckpointState
All Implemented Interfaces:
Serializable, Comparable<RogLog.CheckpointState>
Enclosing class:
RogLog

public static enum RogLog.CheckpointState
extends 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

Pending

public static final RogLog.CheckpointState 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


AllEntriesCheckpointed

public static final RogLog.CheckpointState AllEntriesCheckpointed
Indicates that all entries in the log have a checkpoint version


NoEntriesCheckpointed

public static final RogLog.CheckpointState NoEntriesCheckpointed
Indicates that no entries in the log have a checkpoint version i.e. all entries have checkpoint <= 0

Method Detail

values

public static RogLog.CheckpointState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (RogLog.CheckpointState c : RogLog.CheckpointState.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static RogLog.CheckpointState valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2016 Neeve Research, LLC. All Rights Reserved.