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

Enum SQLRecordTypeValues

  • java.lang.Object
  • 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

      Enum Constants 
      Enum Constant and Description
      _A 
      _C 
      _E 
      _I 
      _J 
      _K 
      _P 
      _Q 
      _R 
      _T 
      _V 
    • Method Summary

      Methods 
      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.
      • 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

      • _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)

    • 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