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