static enum JdbcSchema.TableUsageType extends Enum<JdbcSchema.TableUsageType>
Modifier and Type | Method and Description |
---|---|
static JdbcSchema.TableUsageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JdbcSchema.TableUsageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JdbcSchema.TableUsageType UNKNOWN
public static final JdbcSchema.TableUsageType FACT
public static final JdbcSchema.TableUsageType AGG
public static JdbcSchema.TableUsageType[] values()
for (JdbcSchema.TableUsageType c : JdbcSchema.TableUsageType.values()) System.out.println(c);
public static JdbcSchema.TableUsageType 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 null