Tabnine Logo
EISPlatform.getConversionManager
Code IndexAdd Tabnine to your IDE (free)

How to use
getConversionManager
method
in
org.eclipse.persistence.eis.EISPlatform

Best Java code snippets using org.eclipse.persistence.eis.EISPlatform.getConversionManager (Showing top 3 results out of 315)

origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * Stores the field value into the record.
 * This allows for the platform to perform any platform specific translation or conversion.
 */
public void setValueInRecord(String key, Object value, MappedRecord record, EISAccessor accessor) {
  Object recordValue = value;
  if (shouldConvertDataToStrings() && !(value instanceof Record) && !(value instanceof Collection)) {
    recordValue = getConversionManager().convertObject(value, ClassConstants.STRING);
  }
  record.put(key, recordValue);
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * Stores the field value into the record.
 * This allows for the platform to perform any platform specific translation or conversion.
 */
public void setValueInRecord(String key, Object value, MappedRecord record, EISAccessor accessor) {
  Object recordValue = value;
  if (shouldConvertDataToStrings() && !(value instanceof Record) && !(value instanceof Collection)) {
    recordValue = getConversionManager().convertObject(value, ClassConstants.STRING);
  }
  record.put(key, recordValue);
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * Stores the field value into the record.
 * This allows for the platform to perform any platform specific translation or conversion.
 */
public void setValueInRecord(String key, Object value, MappedRecord record, EISAccessor accessor) {
  Object recordValue = value;
  if (shouldConvertDataToStrings()) {
    recordValue = getConversionManager().convertObject(value, ClassConstants.STRING);
  }
  record.put(key, recordValue);
}
org.eclipse.persistence.eisEISPlatformgetConversionManager

Javadoc

The platform holds its own instance of conversion manager to allow customization.

Popular methods of EISPlatform

  • <init>
    Default constructor.
  • appendParameter
    Add the parameter. Convert the parameter to a string and write it. Convert rows to XML strings.
  • buildInteractionSpec
    Allow the platform to build the interaction spec based on properties defined in the interaction.
  • buildRow
    INTERNAL: Allow the platform to handle record to row conversion.
  • buildRows
    Allow the platform to handle record to row conversion.
  • createDOMRecord
    Allow the platform to handle the creation of the DOM record. By default create a mapped record an as
  • createDatabaseRowFromDOMRecord
    INTERNAL: Allow the platform to handle the creation of the Record for the DOM record. By default ins
  • createInputRecord
    Allow the platform to create the appropriate type of record for the interaction.
  • createOutputRecord
    Allow the platform to create the appropriate type of record for the interaction. If an output record
  • getRecordConverter
    Return the record converter.
  • isDOMRecordSupported
    Return if this platform supports XML/DOM Records.
  • requiresAutoCommit
    Return if this platform requires auto commit of the local transaction for interactions outside of an
  • isDOMRecordSupported,
  • requiresAutoCommit,
  • setDOMInRecord,
  • setIsDOMRecordSupported,
  • setIsIndexedRecordSupported,
  • setIsMappedRecordSupported,
  • setRequiresAutoCommit,
  • setShouldConvertDataToStrings,
  • setSupportsLocalTransactions

Popular in Java

  • Reading from database using SQL prepared statement
  • getExternalFilesDir (Context)
  • scheduleAtFixedRate (Timer)
  • getContentResolver (Context)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now