Module eclipselink
Enum Class OraclePLSQLTypes
java.lang.Object
java.lang.Enum<OraclePLSQLTypes>
org.eclipse.persistence.platform.database.oracle.plsql.OraclePLSQLTypes
- All Implemented Interfaces:
Serializable,Comparable<OraclePLSQLTypes>,Constable,org.eclipse.persistence.internal.helper.DatabaseType,org.eclipse.persistence.internal.helper.SimpleDatabaseType,OraclePLSQLType
public enum OraclePLSQLTypes
extends Enum<OraclePLSQLTypes>
implements org.eclipse.persistence.internal.helper.SimpleDatabaseType, OraclePLSQLType
PUBLIC: Oracle PL/SQL types
- Author:
- Mike Norman - michael.norman@oracle.com
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>Nested classes/interfaces inherited from interface org.eclipse.persistence.internal.helper.DatabaseType
org.eclipse.persistence.internal.helper.DatabaseType.DatabaseTypeHelper -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Field Summary
Fields inherited from interface org.eclipse.persistence.internal.helper.DatabaseType
ARGNAME_SIZE_LIMIT, COMPAT_SHORT_PREFIX, COMPAT_SUFFIX, TARGET_SHORT_PREFIX, TARGET_SUFFIXFields inherited from interface org.eclipse.persistence.platform.database.oracle.plsql.OraclePLSQLType
PLSQLBoolean_IN_CONV, PLSQLBoolean_OUT_CONV -
Method Summary
Modifier and TypeMethodDescriptionvoidbuildBeginBlock(StringBuilder sb, PLSQLargument arg, PLSQLStoredProcedureCall call) INTERNAL: Append any code or translation required for the type.voidbuildInDeclare(StringBuilder sb, PLSQLargument inArg) INTERNAL: Append the variable declaration for the type.voidbuildOutAssignment(StringBuilder sb, PLSQLargument arg, PLSQLStoredProcedureCall call) INTERNAL: Append any code or translation for assigning the output value.voidbuildOutDeclare(StringBuilder sb, PLSQLargument outArg) INTERNAL: Append the variable declaration for the type.voidbuildOutputRow(PLSQLargument outArg, org.eclipse.persistence.internal.sessions.AbstractRecord outputRow, DatabaseRecord newOutputRow, List<org.eclipse.persistence.internal.helper.DatabaseField> outputRowFields, List outputRowValues) INTERNAL: Build the query output row from the call output row.intcomputeInIndex(PLSQLargument inArg, int newIndex, ListIterator<PLSQLargument> i) INTERNAL: Return the parameter index for the IN parameter.intcomputeOutIndex(PLSQLargument outArg, int newIndex, ListIterator<PLSQLargument> i) INTERNAL: Return the parameter index for the OUT parameter.intstatic org.eclipse.persistence.internal.helper.DatabaseTypegetDatabaseTypeForCode(String typeName) intbooleanbooleanvoidlogParameter(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.voidtranslate(PLSQLargument arg, org.eclipse.persistence.internal.sessions.AbstractRecord translationRow, org.eclipse.persistence.internal.sessions.AbstractRecord copyOfTranslationRow, List<org.eclipse.persistence.internal.helper.DatabaseField> copyOfTranslationFields, List<org.eclipse.persistence.internal.helper.DatabaseField> translationRowFields, List translationRowValues, StoredProcedureCall call) INTERNAL: Translate the argument value from the query translation row to call translation row.static OraclePLSQLTypesReturns the enum constant of this class with the specified name.static OraclePLSQLTypes[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BinaryInteger
-
Dec
-
Int
-
Natural
-
NaturalN
-
PLSQLBoolean
-
PLSQLInteger
-
Positive
-
PositiveN
-
SignType
-
XMLType
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
isComplexDatabaseType
public boolean isComplexDatabaseType()- Specified by:
isComplexDatabaseTypein interfaceorg.eclipse.persistence.internal.helper.DatabaseType
-
getSqlCode
public int getSqlCode()- Specified by:
getSqlCodein interfaceorg.eclipse.persistence.internal.helper.DatabaseType
-
getConversionCode
public int getConversionCode()- Specified by:
getConversionCodein interfaceorg.eclipse.persistence.internal.helper.DatabaseType
-
getTypeName
- Specified by:
getTypeNamein interfaceorg.eclipse.persistence.internal.helper.DatabaseType
-
isJDBCType
public boolean isJDBCType()- Specified by:
isJDBCTypein interfaceorg.eclipse.persistence.internal.helper.DatabaseType
-
computeInIndex
INTERNAL: Return the parameter index for the IN parameter.- Specified by:
computeInIndexin interfaceorg.eclipse.persistence.internal.helper.DatabaseType
-
computeOutIndex
INTERNAL: Return the parameter index for the OUT parameter.- Specified by:
computeOutIndexin interfaceorg.eclipse.persistence.internal.helper.DatabaseType
-
buildInDeclare
INTERNAL: Append the variable declaration for the type.- Specified by:
buildInDeclarein interfaceorg.eclipse.persistence.internal.helper.DatabaseType
-
buildOutDeclare
INTERNAL: Append the variable declaration for the type.- Specified by:
buildOutDeclarein interfaceorg.eclipse.persistence.internal.helper.DatabaseType
-
buildBeginBlock
INTERNAL: Append any code or translation required for the type.- Specified by:
buildBeginBlockin interfaceorg.eclipse.persistence.internal.helper.DatabaseType
-
buildOutAssignment
INTERNAL: Append any code or translation for assigning the output value.- Specified by:
buildOutAssignmentin interfaceorg.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, List<org.eclipse.persistence.internal.helper.DatabaseField> copyOfTranslationFields, List<org.eclipse.persistence.internal.helper.DatabaseField> translationRowFields, List translationRowValues, StoredProcedureCall call) INTERNAL: Translate the argument value from the query translation row to call translation row.- Specified by:
translatein interfaceorg.eclipse.persistence.internal.helper.DatabaseType
-
buildOutputRow
public void buildOutputRow(PLSQLargument outArg, org.eclipse.persistence.internal.sessions.AbstractRecord outputRow, DatabaseRecord newOutputRow, List<org.eclipse.persistence.internal.helper.DatabaseField> outputRowFields, List outputRowValues) INTERNAL: Build the query output row from the call output row.- Specified by:
buildOutputRowin interfaceorg.eclipse.persistence.internal.helper.DatabaseType
-
logParameter
public void logParameter(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:
logParameterin interfaceorg.eclipse.persistence.internal.helper.DatabaseType
-
getDatabaseTypeForCode
public static org.eclipse.persistence.internal.helper.DatabaseType getDatabaseTypeForCode(String typeName)
-