static enum DirtyINMap.CkptState extends java.lang.Enum<DirtyINMap.CkptState>
Enum Constant and Description |
---|
DIRTY_MAP_COMPLETE
Checkpoint in progress and dirty map is complete.
|
DIRTY_MAP_INCOMPLETE
Checkpoint started but dirty map is not yet complete.
|
NONE
No checkpoint in progress, or is used for Database.sync.
|
Modifier and Type | Method and Description |
---|---|
static DirtyINMap.CkptState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DirtyINMap.CkptState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DirtyINMap.CkptState NONE
public static final DirtyINMap.CkptState DIRTY_MAP_INCOMPLETE
public static final DirtyINMap.CkptState DIRTY_MAP_COMPLETE
public static DirtyINMap.CkptState[] values()
for (DirtyINMap.CkptState c : DirtyINMap.CkptState.values()) System.out.println(c);
public static DirtyINMap.CkptState valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright (c) 2004-2012 Oracle. All rights reserved.