public static enum Sequence.ParameterType extends Enum<Sequence.ParameterType>
| Enum Constant and Description |
|---|
CACHE |
CYCLE |
GLOBAL |
INCREMENT_BY |
KEEP |
MAXVALUE |
MINVALUE |
NOCACHE |
NOCYCLE |
NOKEEP |
NOMAXVALUE |
NOMINVALUE |
NOORDER |
ORDER |
RESTART_WITH |
SESSION |
START_WITH |
| Modifier and Type | Method and Description |
|---|---|
static Sequence.ParameterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Sequence.ParameterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Sequence.ParameterType INCREMENT_BY
public static final Sequence.ParameterType START_WITH
public static final Sequence.ParameterType RESTART_WITH
public static final Sequence.ParameterType MAXVALUE
public static final Sequence.ParameterType NOMAXVALUE
public static final Sequence.ParameterType MINVALUE
public static final Sequence.ParameterType NOMINVALUE
public static final Sequence.ParameterType CYCLE
public static final Sequence.ParameterType NOCYCLE
public static final Sequence.ParameterType CACHE
public static final Sequence.ParameterType NOCACHE
public static final Sequence.ParameterType ORDER
public static final Sequence.ParameterType NOORDER
public static final Sequence.ParameterType KEEP
public static final Sequence.ParameterType NOKEEP
public static final Sequence.ParameterType SESSION
public static final Sequence.ParameterType GLOBAL
public static Sequence.ParameterType[] values()
for (Sequence.ParameterType c : Sequence.ParameterType.values()) System.out.println(c);
public static Sequence.ParameterType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2004–2023 JSQLParser. All rights reserved.