public static enum Clause.Subject extends java.lang.Enum<Clause.Subject>
| Enum Constant and Description |
|---|
COLUMN |
COLUMN_NAME |
TABLE_NAME |
TYPE |
| Modifier and Type | Field and Description |
|---|---|
java.lang.String |
description |
java.lang.Class<?> |
type |
| Modifier and Type | Method and Description |
|---|---|
abstract java.lang.Object |
getSubject(Table table,
Column column) |
java.lang.String |
toString() |
static Clause.Subject |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Clause.Subject[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Clause.Subject COLUMN
public static final Clause.Subject COLUMN_NAME
public static final Clause.Subject TABLE_NAME
public static final Clause.Subject TYPE
public final java.lang.String description
public final java.lang.Class<?> type
public static Clause.Subject[] values()
for (Clause.Subject c : Clause.Subject.values()) System.out.println(c);
public static Clause.Subject valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<Clause.Subject>