public static enum PlSqlReference.ReferenceType extends java.lang.Enum<PlSqlReference.ReferenceType>
| Enum Constant and Description |
|---|
DIRECT
A direct reference to some other object.
|
PCT_ROWTYPE
The object has a datatype that is a based on the row of a table.
|
PCT_TYPE
The object has a datatype that is a based on the datatype of another object.
|
REF
The object has a datatype that is a SQL REF to another object.
|
| Modifier and Type | Method and Description |
|---|---|
static PlSqlReference.ReferenceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PlSqlReference.ReferenceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlSqlReference.ReferenceType DIRECT
var := 1; // var is a reference to a local variablepublic static final PlSqlReference.ReferenceType REF
geom_ref REF MDSYS.SDO_GEOMETRY;public static final PlSqlReference.ReferenceType PCT_TYPE
l_empno EMPLOYEES.EMPNO%TYPE;public static final PlSqlReference.ReferenceType PCT_ROWTYPE
l_empRec EMPLOYEES%ROWTYPE;public static PlSqlReference.ReferenceType[] values()
for (PlSqlReference.ReferenceType c : PlSqlReference.ReferenceType.values()) System.out.println(c);
public static PlSqlReference.ReferenceType 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 null