public enum ColumnLevel extends Enum<ColumnLevel>
| Enum Constant and Description |
|---|
EXISTS
Column definitely exists (confirmed by metadata).
|
MAYBE
Column might exist but cannot be confirmed (no metadata).
|
NOT_EXISTS
Column definitely does not exist (metadata confirms absence).
|
| Modifier and Type | Method and Description |
|---|---|
static ColumnLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnLevel EXISTS
public static final ColumnLevel MAYBE
public static final ColumnLevel NOT_EXISTS
public static ColumnLevel[] values()
for (ColumnLevel c : ColumnLevel.values()) System.out.println(c);
public static ColumnLevel 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