Enum OraclePLSQLTypes

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<OraclePLSQLTypes>, org.eclipse.persistence.internal.helper.DatabaseType, org.eclipse.persistence.internal.helper.SimpleDatabaseType, OraclePLSQLType

    public enum OraclePLSQLTypes
    extends java.lang.Enum<OraclePLSQLTypes>
    implements org.eclipse.persistence.internal.helper.SimpleDatabaseType, OraclePLSQLType
    PUBLIC: Oracle PL/SQL types
    Author:
    Mike Norman - michael.norman@oracle.com
    Since:
    Oracle TopLink 11.x.x
    • Nested Class Summary

      • Nested classes/interfaces inherited from interface org.eclipse.persistence.internal.helper.DatabaseType

        org.eclipse.persistence.internal.helper.DatabaseType.DatabaseTypeHelper
    • Field Summary

      • Fields inherited from interface org.eclipse.persistence.internal.helper.DatabaseType

        ARGNAME_SIZE_LIMIT, COMPAT_SHORT_PREFIX, COMPAT_SUFFIX, TARGET_SHORT_PREFIX, TARGET_SUFFIX
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      void buildBeginBlock​(java.lang.StringBuilder sb, PLSQLargument arg, PLSQLStoredProcedureCall call)
      INTERNAL: Append any code or translation required for the type.
      void buildInDeclare​(java.lang.StringBuilder sb, PLSQLargument inArg)
      INTERNAL: Append the variable declaration for the type.
      void buildOutAssignment​(java.lang.StringBuilder sb, PLSQLargument arg, PLSQLStoredProcedureCall call)
      INTERNAL: Append any code or translation for assigning the output value.
      void buildOutDeclare​(java.lang.StringBuilder sb, PLSQLargument outArg)
      INTERNAL: Append the variable declaration for the type.
      void buildOutputRow​(PLSQLargument outArg, org.eclipse.persistence.internal.sessions.AbstractRecord outputRow, DatabaseRecord newOutputRow, java.util.List<org.eclipse.persistence.internal.helper.DatabaseField> outputRowFields, java.util.List outputRowValues)
      INTERNAL: Build the query output row from the call output row.
      int computeInIndex​(PLSQLargument inArg, int newIndex, java.util.ListIterator<PLSQLargument> i)
      INTERNAL: Return the parameter index for the IN parameter.
      int computeOutIndex​(PLSQLargument outArg, int newIndex, java.util.ListIterator<PLSQLargument> i)
      INTERNAL: Return the parameter index for the OUT parameter.
      int getConversionCode()  
      static org.eclipse.persistence.internal.helper.DatabaseType getDatabaseTypeForCode​(java.lang.String typeName)  
      int getSqlCode()  
      java.lang.String getTypeName()  
      boolean isComplexDatabaseType()  
      boolean isJDBCType()  
      void logParameter​(java.lang.StringBuilder sb, java.lang.Integer direction, PLSQLargument arg, org.eclipse.persistence.internal.sessions.AbstractRecord translationRow, DatabasePlatform platform)
      Deprecated.
      void logParameter​(java.lang.StringBuilder sb, org.eclipse.persistence.internal.databaseaccess.DatasourceCall.ParameterType direction, PLSQLargument arg, org.eclipse.persistence.internal.sessions.AbstractRecord translationRow, DatabasePlatform platform)
      INTERNAL: Append the parameter for logging purposes.
      void translate​(PLSQLargument arg, org.eclipse.persistence.internal.sessions.AbstractRecord translationRow, org.eclipse.persistence.internal.sessions.AbstractRecord copyOfTranslationRow, java.util.List<org.eclipse.persistence.internal.helper.DatabaseField> copyOfTranslationFields, java.util.List<org.eclipse.persistence.internal.helper.DatabaseField> translationRowFields, java.util.List translationRowValues, StoredProcedureCall call)
      INTERNAL: Translate the argument value from the query translation row to call translation row.
      static OraclePLSQLTypes valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static OraclePLSQLTypes[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Method Detail

      • values

        public static OraclePLSQLTypes[] 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 (OraclePLSQLTypes c : OraclePLSQLTypes.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static OraclePLSQLTypes 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
      • isComplexDatabaseType

        public boolean isComplexDatabaseType()
        Specified by:
        isComplexDatabaseType in interface org.eclipse.persistence.internal.helper.DatabaseType
      • getSqlCode

        public int getSqlCode()
        Specified by:
        getSqlCode in interface org.eclipse.persistence.internal.helper.DatabaseType
      • getConversionCode

        public int getConversionCode()
        Specified by:
        getConversionCode in interface org.eclipse.persistence.internal.helper.DatabaseType
      • getTypeName

        public java.lang.String getTypeName()
        Specified by:
        getTypeName in interface org.eclipse.persistence.internal.helper.DatabaseType
      • isJDBCType

        public boolean isJDBCType()
        Specified by:
        isJDBCType in interface org.eclipse.persistence.internal.helper.DatabaseType
      • computeInIndex

        public int computeInIndex​(PLSQLargument inArg,
                                  int newIndex,
                                  java.util.ListIterator<PLSQLargument> i)
        INTERNAL: Return the parameter index for the IN parameter.
        Specified by:
        computeInIndex in interface org.eclipse.persistence.internal.helper.DatabaseType
      • computeOutIndex

        public int computeOutIndex​(PLSQLargument outArg,
                                   int newIndex,
                                   java.util.ListIterator<PLSQLargument> i)
        INTERNAL: Return the parameter index for the OUT parameter.
        Specified by:
        computeOutIndex in interface org.eclipse.persistence.internal.helper.DatabaseType
      • buildInDeclare

        public void buildInDeclare​(java.lang.StringBuilder sb,
                                   PLSQLargument inArg)
        INTERNAL: Append the variable declaration for the type.
        Specified by:
        buildInDeclare in interface org.eclipse.persistence.internal.helper.DatabaseType
      • buildOutDeclare

        public void buildOutDeclare​(java.lang.StringBuilder sb,
                                    PLSQLargument outArg)
        INTERNAL: Append the variable declaration for the type.
        Specified by:
        buildOutDeclare in interface org.eclipse.persistence.internal.helper.DatabaseType
      • buildBeginBlock

        public void buildBeginBlock​(java.lang.StringBuilder sb,
                                    PLSQLargument arg,
                                    PLSQLStoredProcedureCall call)
        INTERNAL: Append any code or translation required for the type.
        Specified by:
        buildBeginBlock in interface org.eclipse.persistence.internal.helper.DatabaseType
      • buildOutAssignment

        public void buildOutAssignment​(java.lang.StringBuilder sb,
                                       PLSQLargument arg,
                                       PLSQLStoredProcedureCall call)
        INTERNAL: Append any code or translation for assigning the output value.
        Specified by:
        buildOutAssignment in interface org.eclipse.persistence.internal.helper.DatabaseType
      • translate

        public void translate​(PLSQLargument arg,
                              org.eclipse.persistence.internal.sessions.AbstractRecord translationRow,
                              org.eclipse.persistence.internal.sessions.AbstractRecord copyOfTranslationRow,
                              java.util.List<org.eclipse.persistence.internal.helper.DatabaseField> copyOfTranslationFields,
                              java.util.List<org.eclipse.persistence.internal.helper.DatabaseField> translationRowFields,
                              java.util.List translationRowValues,
                              StoredProcedureCall call)
        INTERNAL: Translate the argument value from the query translation row to call translation row.
        Specified by:
        translate in interface org.eclipse.persistence.internal.helper.DatabaseType
      • buildOutputRow

        public void buildOutputRow​(PLSQLargument outArg,
                                   org.eclipse.persistence.internal.sessions.AbstractRecord outputRow,
                                   DatabaseRecord newOutputRow,
                                   java.util.List<org.eclipse.persistence.internal.helper.DatabaseField> outputRowFields,
                                   java.util.List outputRowValues)
        INTERNAL: Build the query output row from the call output row.
        Specified by:
        buildOutputRow in interface org.eclipse.persistence.internal.helper.DatabaseType
      • logParameter

        @Deprecated
        public void logParameter​(java.lang.StringBuilder sb,
                                 java.lang.Integer direction,
                                 PLSQLargument arg,
                                 org.eclipse.persistence.internal.sessions.AbstractRecord translationRow,
                                 DatabasePlatform platform)
        Deprecated.
        INTERNAL: Append the parameter for logging purposes.
        Specified by:
        logParameter in interface org.eclipse.persistence.internal.helper.DatabaseType
      • logParameter

        public void logParameter​(java.lang.StringBuilder sb,
                                 org.eclipse.persistence.internal.databaseaccess.DatasourceCall.ParameterType direction,
                                 PLSQLargument arg,
                                 org.eclipse.persistence.internal.sessions.AbstractRecord translationRow,
                                 DatabasePlatform platform)
        INTERNAL: Append the parameter for logging purposes.
        Specified by:
        logParameter in interface org.eclipse.persistence.internal.helper.DatabaseType
      • getDatabaseTypeForCode

        public static org.eclipse.persistence.internal.helper.DatabaseType getDatabaseTypeForCode​(java.lang.String typeName)