public enum ESymbolKind extends Enum<ESymbolKind>
| Enum Constant and Description |
|---|
COLUMN |
CTE |
CURSOR |
EXCEPTION_NAME |
LABEL |
PACKAGE |
PARAMETER |
ROUTINE |
TABLE |
TRIGGER |
TYPE |
VARIABLE |
VIEW |
| Modifier and Type | Method and Description |
|---|---|
static ESymbolKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ESymbolKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ESymbolKind TABLE
public static final ESymbolKind VIEW
public static final ESymbolKind CTE
public static final ESymbolKind COLUMN
public static final ESymbolKind VARIABLE
public static final ESymbolKind PARAMETER
public static final ESymbolKind CURSOR
public static final ESymbolKind EXCEPTION_NAME
public static final ESymbolKind LABEL
public static final ESymbolKind ROUTINE
public static final ESymbolKind PACKAGE
public static final ESymbolKind TYPE
public static final ESymbolKind TRIGGER
public static ESymbolKind[] values()
for (ESymbolKind c : ESymbolKind.values()) System.out.println(c);
public static ESymbolKind 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