public enum ERoutineKind extends Enum<ERoutineKind>
| Enum Constant and Description |
|---|
ANONYMOUS_BLOCK |
FUNCTION |
NESTED_FUNCTION |
NESTED_PROCEDURE |
PROCEDURE |
TRIGGER |
TYPE_METHOD |
| Modifier and Type | Method and Description |
|---|---|
static ERoutineKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ERoutineKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ERoutineKind PROCEDURE
public static final ERoutineKind FUNCTION
public static final ERoutineKind TRIGGER
public static final ERoutineKind ANONYMOUS_BLOCK
public static final ERoutineKind NESTED_PROCEDURE
public static final ERoutineKind NESTED_FUNCTION
public static final ERoutineKind TYPE_METHOD
public static ERoutineKind[] values()
for (ERoutineKind c : ERoutineKind.values()) System.out.println(c);
public static ERoutineKind 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