Codota Logo
TransformerBasedFieldTransformation.<init>
Code IndexAdd Codota to your IDE (free)

How to use
org.eclipse.persistence.internal.descriptors.TransformerBasedFieldTransformation
constructor

Best Java code snippets using org.eclipse.persistence.internal.descriptors.TransformerBasedFieldTransformation.<init> (Showing top 6 results out of 315)

  • Common ways to obtain TransformerBasedFieldTransformation
private void myMethod () {
TransformerBasedFieldTransformation t =
  • Codota Iconnew TransformerBasedFieldTransformation()
  • Codota IconFieldTransformer aTransformer;new TransformerBasedFieldTransformation(aTransformer)
  • Smart code suggestions by Codota
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * PUBLIC:
 * Add the field and the transformer
 * that returns the value to be placed in the field
 * when the object is written to the database.
 */
public void addFieldTransformer(DatabaseField field, FieldTransformer transformer) {
  TransformerBasedFieldTransformation transformation = new TransformerBasedFieldTransformation(transformer);
  transformation.setField(field);
  getFieldTransformations().addElement(transformation);
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * PUBLIC:
 * Add the field and the transformer
 * that returns the value to be placed in the field
 * when the object is written to the database.
 */
public void addFieldTransformer(DatabaseField field, FieldTransformer transformer) {
  TransformerBasedFieldTransformation transformation = new TransformerBasedFieldTransformation(transformer);
  transformation.setField(field);
  getFieldTransformations().add(transformation);
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * PUBLIC:
 * Add the field and the transformer
 * that returns the value to be placed in the field
 * when the object is written to the database.
 */
public void addFieldTransformer(DatabaseField field, FieldTransformer transformer) {
  TransformerBasedFieldTransformation transformation = new TransformerBasedFieldTransformation(transformer);
  transformation.setField(field);
  getFieldTransformations().add(transformation);
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * INTERNAL:
 * Add the name of a field and the name of a class which implements
 * the FieldTransformer interface. When the object is written, the transform
 * method will be called on the FieldTransformer to acquire the value to put
 * in the field.
 */
public void addFieldTransformerClassName(DatabaseField field, String className) {
  TransformerBasedFieldTransformation transformation = new TransformerBasedFieldTransformation();
  transformation.setField(field);
  transformation.setTransformerClassName(className);
  getFieldTransformations().add(transformation);
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * INTERNAL:
 * Add the name of a field and the name of a class which implements
 * the FieldTransformer interface. When the object is written, the transform
 * method will be called on the FieldTransformer to acquire the value to put
 * in the field.
 */
public void addFieldTransformerClassName(DatabaseField field, String className) {
  TransformerBasedFieldTransformation transformation = new TransformerBasedFieldTransformation();
  transformation.setField(field);
  transformation.setTransformerClassName(className);
  getFieldTransformations().add(transformation);
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * INTERNAL:
 * Add the name of a field and the name of a class which implements
 * the FieldTransformer interface. When the object is written, the transform
 * method will be called on the FieldTransformer to acquire the value to put
 * in the field.
 */
public void addFieldTransformerClassName(DatabaseField field, String className) {
  TransformerBasedFieldTransformation transformation = new TransformerBasedFieldTransformation();
  transformation.setField(field);
  transformation.setTransformerClassName(className);
  getFieldTransformations().addElement(transformation);
}
org.eclipse.persistence.internal.descriptorsTransformerBasedFieldTransformation<init>

Popular methods of TransformerBasedFieldTransformation

  • getField
  • getTransformerClass
  • getTransformerClassName
  • setField
  • setTransformerClass
  • setTransformerClassName

Popular in Java

  • Making http post requests using okhttp
  • getResourceAsStream (ClassLoader)
  • onRequestPermissionsResult (Fragment)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • BigInteger (java.math)
    Immutable arbitrary-precision integers. All operations behave as if BigIntegers were represented in
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Runner (org.openjdk.jmh.runner)
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registery of org.quartz
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now