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