Enum DatabaseType.DatabaseTypeHelper
- java.lang.Object
-
- java.lang.Enum<DatabaseType.DatabaseTypeHelper>
-
- org.eclipse.persistence.internal.helper.DatabaseType.DatabaseTypeHelper
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DatabaseType.DatabaseTypeHelper>
- Enclosing interface:
- DatabaseType
public static enum DatabaseType.DatabaseTypeHelper extends java.lang.Enum<DatabaseType.DatabaseTypeHelper>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description databaseTypeHelper
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringbuildCompatible(PLSQLargument arg)voidbuildOutAssignment(java.lang.StringBuilder sb, PLSQLargument outArg, PLSQLStoredProcedureCall call)voidbuildOutputRow(PLSQLargument outArg, AbstractRecord outputRow, DatabaseRecord newOutputRow, java.util.List<DatabaseField> outputRowFields, java.util.List outputRowValues)java.lang.StringbuildTarget(PLSQLargument arg)intcomputeInIndex(PLSQLargument inArg, int newIndex)intcomputeOutIndex(PLSQLargument outArg, int newIndex)voiddeclareTarget(java.lang.StringBuilder sb, PLSQLargument arg, DatabaseType databaseType)protected java.lang.StringgetTruncatedSHA1Name(java.lang.String argName, java.lang.String prefix)voidlogParameter(java.lang.StringBuilder sb, java.lang.Integer direction, PLSQLargument arg, AbstractRecord translationRow, DatabasePlatform platform)voidlogParameter(java.lang.StringBuilder sb, DatasourceCall.ParameterType direction, PLSQLargument arg, AbstractRecord translationRow, DatabasePlatform platform)voidtranslate(PLSQLargument arg, AbstractRecord translationRow, AbstractRecord copyOfTranslationRow, java.util.List copyOfTranslationFields, java.util.List translationRowFields, java.util.List translationRowValues, StoredProcedureCall call)static DatabaseType.DatabaseTypeHelpervalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DatabaseType.DatabaseTypeHelper[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
databaseTypeHelper
public static final DatabaseType.DatabaseTypeHelper databaseTypeHelper
-
-
Method Detail
-
values
public static DatabaseType.DatabaseTypeHelper[] 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 (DatabaseType.DatabaseTypeHelper c : DatabaseType.DatabaseTypeHelper.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DatabaseType.DatabaseTypeHelper 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 namejava.lang.NullPointerException- if the argument is null
-
getTruncatedSHA1Name
protected java.lang.String getTruncatedSHA1Name(java.lang.String argName, java.lang.String prefix)
-
buildTarget
public java.lang.String buildTarget(PLSQLargument arg)
-
buildCompatible
public java.lang.String buildCompatible(PLSQLargument arg)
-
declareTarget
public void declareTarget(java.lang.StringBuilder sb, PLSQLargument arg, DatabaseType databaseType)
-
computeInIndex
public int computeInIndex(PLSQLargument inArg, int newIndex)
-
computeOutIndex
public int computeOutIndex(PLSQLargument outArg, int newIndex)
-
buildOutAssignment
public void buildOutAssignment(java.lang.StringBuilder sb, PLSQLargument outArg, PLSQLStoredProcedureCall call)
-
translate
public void translate(PLSQLargument arg, AbstractRecord translationRow, AbstractRecord copyOfTranslationRow, java.util.List copyOfTranslationFields, java.util.List translationRowFields, java.util.List translationRowValues, StoredProcedureCall call)
-
buildOutputRow
public void buildOutputRow(PLSQLargument outArg, AbstractRecord outputRow, DatabaseRecord newOutputRow, java.util.List<DatabaseField> outputRowFields, java.util.List outputRowValues)
-
logParameter
public void logParameter(java.lang.StringBuilder sb, java.lang.Integer direction, PLSQLargument arg, AbstractRecord translationRow, DatabasePlatform platform)
-
logParameter
public void logParameter(java.lang.StringBuilder sb, DatasourceCall.ParameterType direction, PLSQLargument arg, AbstractRecord translationRow, DatabasePlatform platform)
-
-