public static enum SaveProcessor.SaveState extends java.lang.Enum<SaveProcessor.SaveState>
Enum Constant and Description |
---|
AfterFixup |
BeforeCommit |
BeforeFixup |
Modifier and Type | Method and Description |
---|---|
static SaveProcessor.SaveState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SaveProcessor.SaveState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SaveProcessor.SaveState BeforeFixup
public static final SaveProcessor.SaveState AfterFixup
public static final SaveProcessor.SaveState BeforeCommit
public static SaveProcessor.SaveState[] values()
for (SaveProcessor.SaveState c : SaveProcessor.SaveState.values()) System.out.println(c);
public static SaveProcessor.SaveState 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 null