Tabnine Logo
ReturningPolicy$Info.is
Code IndexAdd Tabnine to your IDE (free)

How to use
is
method
in
org.eclipse.persistence.descriptors.ReturningPolicy$Info

Best Java code snippets using org.eclipse.persistence.descriptors.ReturningPolicy$Info.is (Showing top 6 results out of 315)

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

protected void addUnmappedFieldToMain(DatabaseField field, Info info) {
  for (int operation = INSERT; operation <= UPDATE; operation++) {
    if (info.is(operation)) {
      addFieldToMain(operation, UNMAPPED, field);
      addFieldToMain(operation, ALL, field);
    }
  }
}
origin: com.haulmont.thirdparty/eclipselink

protected void addUnmappedFieldToMain(DatabaseField field, Info info) {
  for (int operation = INSERT; operation <= UPDATE; operation++) {
    if (info.is(operation)) {
      addFieldToMain(operation, UNMAPPED, field);
      addFieldToMain(operation, ALL, field);
    }
  }
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

protected void addUnmappedFieldToMain(DatabaseField field, Info info) {
  for (int operation = INSERT; operation <= UPDATE; operation++) {
    if (info.is(operation)) {
      addFieldToMain(operation, UNMAPPED, field);
      addFieldToMain(operation, ALL, field);
    }
  }
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

protected void addMappedFieldToMain(DatabaseField field, Info info) {
  for (int operation = INSERT; operation <= UPDATE; operation++) {
    for (int state = RETURN_ONLY; state <= WRITE_RETURN; state++) {
      if (info.is(operation, state)) {
        addFieldToMain(operation, state, field);
        addFieldToMain(operation, MAPPED, field);
        addFieldToMain(operation, ALL, field);
      }
    }
  }
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

protected void addMappedFieldToMain(DatabaseField field, Info info) {
  for (int operation = INSERT; operation <= UPDATE; operation++) {
    for (int state = RETURN_ONLY; state <= WRITE_RETURN; state++) {
      if (info.is(operation, state)) {
        addFieldToMain(operation, state, field);
        addFieldToMain(operation, MAPPED, field);
        addFieldToMain(operation, ALL, field);
      }
    }
  }
}
origin: com.haulmont.thirdparty/eclipselink

protected void addMappedFieldToMain(DatabaseField field, Info info) {
  for (int operation = INSERT; operation <= UPDATE; operation++) {
    for (int state = RETURN_ONLY; state <= WRITE_RETURN; state++) {
      if (info.is(operation, state)) {
        addFieldToMain(operation, state, field);
        addFieldToMain(operation, MAPPED, field);
        addFieldToMain(operation, ALL, field);
      }
    }
  }
}
org.eclipse.persistence.descriptorsReturningPolicy$Infois

Popular methods of ReturningPolicy$Info

  • <init>
  • clone
    INTERNAL:
  • equals
  • getField
  • isInsert
  • isInsertModeReturnOnly
  • isUpdate
  • setField
  • setReferenceClass

Popular in Java

  • Start an intent from android
  • getApplicationContext (Context)
  • getSupportFragmentManager (FragmentActivity)
  • setScale (BigDecimal)
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • String (java.lang)
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • JButton (javax.swing)
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • Top PhpStorm plugins
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