com.ibm.pdp.maf.rpp.pac.blockbase
Enum SQLRecordTypeValues

java.lang.Object
  extended by java.lang.Enum<SQLRecordTypeValues>
      extended by com.ibm.pdp.maf.rpp.pac.blockbase.SQLRecordTypeValues
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SQLRecordTypeValues>

public enum SQLRecordTypeValues
extends java.lang.Enum<SQLRecordTypeValues>

List of type of SQL record for relational BlockBases.


Enum Constant Summary
_A
           
_C
           
_E
           
_I
           
_J
           
_K
           
_P
           
_Q
           
_R
           
_T
           
_V
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

_A

public static final SQLRecordTypeValues _A

Alter table: column updating


_C

public static final SQLRecordTypeValues _C

Package (ORACLE V7 only)


_E

public static final SQLRecordTypeValues _E

Procedure (ORACLE V7, SYBASE, SQL SERVER)


_I

public static final SQLRecordTypeValues _I

Index


_J

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.)


_K

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.)


_P

public static final SQLRecordTypeValues _P

Table space (except for INTEREL RDBC, INTEREL RFM, NONSTOP SQL, SYBASE, and SQL SERVER)


_Q

public static final SQLRecordTypeValues _Q

Function (ORACLE V7 only)


_R

public static final SQLRecordTypeValues _R

ORACLE V7, SYBASE and SQL SERVER: trigger


_T

public static final SQLRecordTypeValues _T

Table


_V

public static final SQLRecordTypeValues _V

View

Method Detail

valueOf

public static SQLRecordTypeValues valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

values

public static SQLRecordTypeValues[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SQLRecordTypeValues c : SQLRecordTypeValues.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared