public enum DatabaseMetaDataTableIndexType extends Enum<DatabaseMetaDataTableIndexType> implements FieldEnum<DatabaseMetaDataTableIndexType,Short>
| Enum Constant and Description |
|---|
tableIndexClustered
A constant for
DatabaseMetaData.tableIndexClustered. |
tableIndexHashed
A constant for
DatabaseMetaData.tableIndexHashed. |
tableIndexOther
A constant for
DatabaseMetaData.tableIndexOther. |
tableIndexStatistic
A constant for
DatabaseMetaData.tableIndexStatistic. |
| Modifier and Type | Method and Description |
|---|---|
static Short[] |
fieldValues() |
static DatabaseMetaDataTableIndexType |
fromFieldValue(short fieldValue) |
Short |
getFieldValue()
Returns field value.
|
static DatabaseMetaDataTableIndexType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseMetaDataTableIndexType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseMetaDataTableIndexType tableIndexStatistic
DatabaseMetaData.tableIndexStatistic.public static final DatabaseMetaDataTableIndexType tableIndexClustered
DatabaseMetaData.tableIndexClustered.public static final DatabaseMetaDataTableIndexType tableIndexHashed
DatabaseMetaData.tableIndexHashed.public static final DatabaseMetaDataTableIndexType tableIndexOther
DatabaseMetaData.tableIndexOther.public static DatabaseMetaDataTableIndexType[] values()
for (DatabaseMetaDataTableIndexType c : DatabaseMetaDataTableIndexType.values()) System.out.println(c);
public static DatabaseMetaDataTableIndexType 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 nullpublic static DatabaseMetaDataTableIndexType fromFieldValue(short fieldValue)
public static Short[] fieldValues()
public Short getFieldValue()
FieldEnumgetFieldValue in interface FieldEnum<DatabaseMetaDataTableIndexType,Short>Copyright © 2011-2013. All Rights Reserved.