congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
FieldTransformation.getField
Code IndexAdd Tabnine to your IDE (free)

How to use
getField
method
in
org.eclipse.persistence.internal.descriptors.FieldTransformation

Best Java code snippets using org.eclipse.persistence.internal.descriptors.FieldTransformation.getField (Showing top 9 results out of 315)

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

/**
 * INTERNAL:
 * Required for reverse compatibility and test cases:
 * @return a hash table containing the fieldName and their respective method names
 */
public Hashtable getFieldNameToMethodNames() {
  Hashtable table = new Hashtable(getFieldTransformations().size());
  Iterator transformations = getFieldTransformations().iterator();
  while (transformations.hasNext()) {
    FieldTransformation transformation = (FieldTransformation)transformations.next();
    if (transformation instanceof MethodBasedFieldTransformation) {
      table.put(transformation.getField().getQualifiedName(), ((MethodBasedFieldTransformation)transformation).getMethodName());
    }
  }
  return table;
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * INTERNAL:
 * Required for reverse compatibility and test cases:
 * @return a hash table containing the fieldName and their respective method names
 */
public Hashtable getFieldNameToMethodNames() {
  Hashtable table = new Hashtable(getFieldTransformations().size());
  Iterator transformations = getFieldTransformations().iterator();
  while (transformations.hasNext()) {
    FieldTransformation transformation = (FieldTransformation)transformations.next();
    if (transformation instanceof MethodBasedFieldTransformation) {
      table.put(transformation.getField().getQualifiedName(), ((MethodBasedFieldTransformation)transformation).getMethodName());
    }
  }
  return table;
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * INTERNAL:
 * Required for reverse compatibility and test cases:
 * @return a hash table containing the fieldName and their respective method names
 */
public Hashtable getFieldNameToMethodNames() {
  Hashtable table = new Hashtable(getFieldTransformations().size());
  Iterator transformations = getFieldTransformations().iterator();
  while (transformations.hasNext()) {
    FieldTransformation transformation = (FieldTransformation)transformations.next();
    if (transformation instanceof MethodBasedFieldTransformation) {
      table.put(transformation.getField().getQualifiedName(), ((MethodBasedFieldTransformation)transformation).getMethodName());
    }
  }
  return table;
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * INTERNAL:
 * Needed for backwards compatibility
 */
public Vector getFieldNameToMethodNameAssociations() {
  Vector associations = new Vector();
  for (Iterator source = getFieldTransformations().iterator(); source.hasNext();) {
    FieldTransformation tf = (FieldTransformation)source.next();
    if (tf instanceof MethodBasedFieldTransformation) {
      Association ass = new Association();
      ass.setKey(tf.getField().getQualifiedName());
      ass.setValue(((MethodBasedFieldTransformation)tf).getMethodName());
      associations.addElement(ass);
    }
  }
  return associations;
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * INTERNAL:
 * Needed for backwards compatibility
 */
public Vector getFieldNameToMethodNameAssociations() {
  Vector associations = new Vector();
  for (Iterator source = getFieldTransformations().iterator(); source.hasNext();) {
    FieldTransformation tf = (FieldTransformation)source.next();
    if (tf instanceof MethodBasedFieldTransformation) {
      Association ass = new Association();
      ass.setKey(tf.getField().getQualifiedName());
      ass.setValue(((MethodBasedFieldTransformation)tf).getMethodName());
      associations.addElement(ass);
    }
  }
  return associations;
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * INTERNAL:
 * Needed for backwards compatibility
 */
public Vector getFieldNameToMethodNameAssociations() {
  Vector associations = new Vector();
  for (Iterator source = getFieldTransformations().iterator(); source.hasNext();) {
    FieldTransformation tf = (FieldTransformation)source.next();
    if (tf instanceof MethodBasedFieldTransformation) {
      Association ass = new Association();
      ass.setKey(tf.getField().getQualifiedName());
      ass.setValue(((MethodBasedFieldTransformation)tf).getMethodName());
      associations.addElement(ass);
    }
  }
  return associations;
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

DatabaseField field = getDescriptor().buildField(transformation.getField());
String transformerClassName = "MethodBasedFieldTransformer";
FieldTransformer transformer = null;
origin: org.eclipse.persistence/org.eclipse.persistence.core

DatabaseField field = getDescriptor().buildField(transformation.getField());
String transformerClassName = "MethodBasedFieldTransformer";
FieldTransformer transformer = null;
origin: com.haulmont.thirdparty/eclipselink

DatabaseField field = getDescriptor().buildField(transformation.getField());
String transformerClassName = "MethodBasedFieldTransformer";
FieldTransformer transformer = null;
org.eclipse.persistence.internal.descriptorsFieldTransformationgetField

Popular methods of FieldTransformation

  • buildTransformer
  • getFieldName

Popular in Java

  • Parsing JSON documents to java classes using gson
  • onCreateOptionsMenu (Activity)
  • runOnUiThread (Activity)
  • getResourceAsStream (ClassLoader)
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • Notification (javax.management)
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Top 17 Plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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