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