com.sleepycat.je.dbi
Enum StartupTracker.Phase

java.lang.Object
  extended by java.lang.Enum<StartupTracker.Phase>
      extended by com.sleepycat.je.dbi.StartupTracker.Phase
All Implemented Interfaces:
Serializable, Comparable<StartupTracker.Phase>
Enclosing class:
StartupTracker

public static enum StartupTracker.Phase
extends Enum<StartupTracker.Phase>


Enum Constant Summary
BECOME_CONSISTENT
           
BUILD_TREE
           
CKPT
           
FIND_END_OF_LOG
           
FIND_LAST_CKPT
           
FIND_MASTER
           
POPULATE_UP
           
READ_INS
           
READ_MAP_INS
           
REDO_INS
           
REDO_LNS
           
REDO_MAP_INS
           
REDO_MAP_LNS
           
REMOVE_TEMP_DBS
           
TOTAL_ENV_OPEN
           
TOTAL_JOIN_GROUP
           
TOTAL_RECOVERY
           
UNDO_LNS
           
UNDO_MAP_LNS
           
 
Method Summary
static StartupTracker.Phase valueOf(String name)
          Returns the enum constant of this type with the specified name.
static StartupTracker.Phase[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TOTAL_ENV_OPEN

public static final StartupTracker.Phase TOTAL_ENV_OPEN

TOTAL_RECOVERY

public static final StartupTracker.Phase TOTAL_RECOVERY

FIND_END_OF_LOG

public static final StartupTracker.Phase FIND_END_OF_LOG

FIND_LAST_CKPT

public static final StartupTracker.Phase FIND_LAST_CKPT

BUILD_TREE

public static final StartupTracker.Phase BUILD_TREE

READ_MAP_INS

public static final StartupTracker.Phase READ_MAP_INS

REDO_MAP_INS

public static final StartupTracker.Phase REDO_MAP_INS

UNDO_MAP_LNS

public static final StartupTracker.Phase UNDO_MAP_LNS

REDO_MAP_LNS

public static final StartupTracker.Phase REDO_MAP_LNS

READ_INS

public static final StartupTracker.Phase READ_INS

REDO_INS

public static final StartupTracker.Phase REDO_INS

UNDO_LNS

public static final StartupTracker.Phase UNDO_LNS

REDO_LNS

public static final StartupTracker.Phase REDO_LNS

POPULATE_UP

public static final StartupTracker.Phase POPULATE_UP

REMOVE_TEMP_DBS

public static final StartupTracker.Phase REMOVE_TEMP_DBS

CKPT

public static final StartupTracker.Phase CKPT

TOTAL_JOIN_GROUP

public static final StartupTracker.Phase TOTAL_JOIN_GROUP

FIND_MASTER

public static final StartupTracker.Phase FIND_MASTER

BECOME_CONSISTENT

public static final StartupTracker.Phase BECOME_CONSISTENT
Method Detail

values

public static StartupTracker.Phase[] 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 (StartupTracker.Phase c : StartupTracker.Phase.values())
    System.out.println(c);

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

valueOf

public static StartupTracker.Phase 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 (c) 2004-2012 Oracle. All rights reserved.