public static enum DatabaseMetadata.TableType extends Enum<DatabaseMetadata.TableType>
| Enum Constant and Description |
|---|
ALL |
SEQUENCE |
SYSTEM_TABLE |
SYSTEM_VIEW |
TABLE |
VIEW |
| Modifier and Type | Method and Description |
|---|---|
static DatabaseMetadata.TableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseMetadata.TableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseMetadata.TableType ALL
public static final DatabaseMetadata.TableType TABLE
public static final DatabaseMetadata.TableType SYSTEM_TABLE
public static final DatabaseMetadata.TableType VIEW
public static final DatabaseMetadata.TableType SYSTEM_VIEW
public static final DatabaseMetadata.TableType SEQUENCE
public static DatabaseMetadata.TableType[] values()
for (DatabaseMetadata.TableType c : DatabaseMetadata.TableType.values()) System.out.println(c);
public static DatabaseMetadata.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 © 2001–2021 JBoss by Red Hat. All rights reserved.