public enum DBMSFeature extends Enum<DBMSFeature>
Enum Constant and Description |
---|
CREATE_SCHEMA |
QUERY_LIMIT_ROWS |
QUERY_SKIP_ROWS |
SEQUENCE_NEXTVAL |
SEQUENCES |
Modifier and Type | Method and Description |
---|---|
static DBMSFeature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DBMSFeature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBMSFeature CREATE_SCHEMA
public static final DBMSFeature SEQUENCES
public static final DBMSFeature SEQUENCE_NEXTVAL
public static final DBMSFeature QUERY_LIMIT_ROWS
public static final DBMSFeature QUERY_SKIP_ROWS
public static DBMSFeature[] values()
for (DBMSFeature c : DBMSFeature.values()) System.out.println(c);
public static DBMSFeature 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 © 2008–2023 Apache Software Foundation. All rights reserved.