|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<TableType>
schemacrawler.schema.TableType
public enum TableType
An enumeration wrapper around JDBC table types.
| Enum Constant Summary | |
|---|---|
alias
Alias |
|
global_temporary
Global temporary |
|
local_temporary
Local temporary |
|
synonym
Synonym |
|
system_table
System table |
|
table
Table |
|
unknown
Unknown |
|
view
View |
|
| Method Summary | |
|---|---|
static String[] |
toStrings(TableType[] tableTypes)
Converts an array of table types to an array of their corresponding string values. |
static TableType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static TableType[] |
valueOf(String[] tableTypeStrings)
Returns the enum constant of this type with the specified name. |
static TableType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final TableType unknown
public static final TableType system_table
public static final TableType global_temporary
public static final TableType local_temporary
public static final TableType table
public static final TableType view
public static final TableType alias
public static final TableType synonym
| Method Detail |
|---|
public static TableType[] values()
for (TableType c : TableType.values()) System.out.println(c);
public static 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 name
NullPointerException - if the argument is nullpublic static String[] toStrings(TableType[] tableTypes)
tableTypes - Array of table types
public static TableType[] valueOf(String[] tableTypeStrings)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||