public static enum SequenceUsage.Mode extends java.lang.Enum<SequenceUsage.Mode>
| Enum Constant and Description |
|---|
CURRVAL
The current value of the sequence is being selected
|
NEXTVAL
The next value of the sequence is being selected
|
| Modifier and Type | Method and Description |
|---|---|
static SequenceUsage.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SequenceUsage.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SequenceUsage.Mode NEXTVAL
public static final SequenceUsage.Mode CURRVAL
public static SequenceUsage.Mode[] values()
for (SequenceUsage.Mode c : SequenceUsage.Mode.values()) System.out.println(c);
public static SequenceUsage.Mode 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