public enum SQLRecordTypeValues extends java.lang.Enum<SQLRecordTypeValues>
List of type of SQL record for relational BlockBases.
Modifier and Type | Method and Description |
---|---|
static SQLRecordTypeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SQLRecordTypeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SQLRecordTypeValues _A
Alter table: column updating
public static final SQLRecordTypeValues _C
Package (ORACLE V7 only)
public static final SQLRecordTypeValues _E
Procedure (ORACLE V7, SYBASE, SQL SERVER)
public static final SQLRecordTypeValues _I
Index
public static final SQLRecordTypeValues _J
Foreign Key
DB2, DATACOM/DB, SQL/DS, ORACLE V6 and V7, SYBASE and SQL SERVER: foreign key (processed with the generation through an ALTER TABLE command.)
public static final SQLRecordTypeValues _K
Primary Key.
RDMS: primary key (processed with the generation of the table that precedes it.)
DB2, DATACOM/DB, SQL/DS, ORACLE V6 and V7, DB2/2, DB2/6000, SYBASE and SQL SERVER: primary key (processed with the generation through an ALTER TABLE command.)
public static final SQLRecordTypeValues _P
Table space (except for INTEREL RDBC, INTEREL RFM, NONSTOP SQL, SYBASE, and SQL SERVER)
public static final SQLRecordTypeValues _Q
Function (ORACLE V7 only)
public static final SQLRecordTypeValues _R
ORACLE V7, SYBASE and SQL SERVER: trigger
public static final SQLRecordTypeValues _T
Table
public static final SQLRecordTypeValues _V
View
public static SQLRecordTypeValues 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 static SQLRecordTypeValues[] values()
for (SQLRecordTypeValues c : SQLRecordTypeValues.values()) System.out.println(c);