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

How to use
addField
method
in
org.eclipse.persistence.descriptors.ReturningPolicy

Best Java code snippets using org.eclipse.persistence.descriptors.ReturningPolicy.addField (Showing top 9 results out of 315)

origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * PUBLIC:
 */
public void addFieldForInsert(DatabaseField field) {
  addField(field, true, false, false);
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * PUBLIC:
 * Define that the field will be returned from an update operation.
 */
public void addFieldForUpdate(DatabaseField field) {
  addField(field, false, false, true);
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * PUBLIC:
 * Define that the field will be returned from an insert operation.
 * A field added with addFieldForInsertReturnOnly method
 * is excluded from INSERT clause during SQL generation.
 */
public void addFieldForInsertReturnOnly(DatabaseField field) {
  addField(field, true, true, false);
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * PUBLIC:
 */
public void addFieldForUpdate(DatabaseField field) {
  addField(field, false, false, true);
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * PUBLIC:
 * Define that the field will be returned from an insert operation.
 */
public void addFieldForInsert(DatabaseField field) {
  addField(field, true, false, false);
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * PUBLIC:
 * Define that the field will be returned from an insert operation.
 * A field added with addFieldForInsertReturnOnly method
 * is excluded from INSERT clause during SQL generation.
 */
public void addFieldForInsertReturnOnly(DatabaseField field) {
  addField(field, true, true, false);
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * PUBLIC:
 * Define that the field will be returned from an update operation.
 */
public void addFieldForUpdate(DatabaseField field) {
  addField(field, false, false, true);
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * PUBLIC:
 * Define that the field will be returned from an insert operation.
 */
public void addFieldForInsert(DatabaseField field) {
  addField(field, true, false, false);
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * PUBLIC:
 */
public void addFieldForInsertReturnOnly(DatabaseField field) {
  addField(field, true, true, false);
}
org.eclipse.persistence.descriptorsReturningPolicyaddField

Javadoc

INTERNAL:

Popular methods of ReturningPolicy

  • <init>
  • addCollectionToMain
  • addFieldForInsert
    PUBLIC:
  • addFieldForInsertReturnOnly
    PUBLIC:
  • addFieldForUpdate
    PUBLIC:
  • addFieldToMain
  • addMappedFieldToMain
  • addUnmappedFieldToMain
  • areCollectionsEqualAsSets
    INTERNAL: Compares two Collections as sets (ignoring the order of the elements). Note that the passe
  • clearInitialization
  • clone
    INTERNAL: Normally cloned when not yet initialized. If initialized ReturningPolicy cloned then the c
  • copyMainFrom
  • clone,
  • copyMainFrom,
  • createCollection,
  • createField,
  • fieldIsNotFromDescriptor,
  • getDescriptor,
  • getField,
  • getFieldInfos,
  • getFieldsToGenerateInsert

Popular in Java

  • Creating JSON documents from java classes using gson
  • onCreateOptionsMenu (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • PhpStorm for WordPress
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