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