public enum TableType extends Enum<TableType>
| 枚举常量和说明 |
|---|
EXTERNAL_TABLE_ENGINE
The table type name for external table engines.
|
SYSTEM_TABLE
The table type name for system tables.
|
TABLE
The table type name for regular data tables.
|
TABLE_LINK
The table type name for linked tables.
|
VIEW
The table type name for views.
|
public static final TableType TABLE_LINK
public static final TableType SYSTEM_TABLE
public static final TableType TABLE
public static final TableType VIEW
public static final TableType EXTERNAL_TABLE_ENGINE
public static TableType[] values()
for (TableType c : TableType.values()) System.out.println(c);
public static TableType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2017. All rights reserved.