public static enum DBMetaData.TableType extends Enum<DBMetaData.TableType>
Modifier and Type | Field and Description |
---|---|
static EnumSet<DBMetaData.TableType> |
TABLES_AND_VIEWS |
static EnumSet<DBMetaData.TableType> |
TABLES_VIEWS_AND_SYNONYMS |
Modifier and Type | Method and Description |
---|---|
static DBMetaData.TableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DBMetaData.TableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBMetaData.TableType TABLE
public static final DBMetaData.TableType VIEW
public static final DBMetaData.TableType SYNONYM
public static final DBMetaData.TableType OTHER
public static final EnumSet<DBMetaData.TableType> TABLES_AND_VIEWS
public static final EnumSet<DBMetaData.TableType> TABLES_VIEWS_AND_SYNONYMS
public static DBMetaData.TableType[] values()
for (DBMetaData.TableType c : DBMetaData.TableType.values()) System.out.println(c);
public static DBMetaData.TableType 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 © 2003–2021 XDEV Software. All rights reserved.