com.sleepycat.je.dbi
Enum StartupTracker.Phase
java.lang.Object
java.lang.Enum<StartupTracker.Phase>
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>
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
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.