Tabnine Logo
EISCollectionChangeRecord.simpleRemoveChangeSet
Code IndexAdd Tabnine to your IDE (free)

How to use
simpleRemoveChangeSet
method
in
org.eclipse.persistence.eis.EISCollectionChangeRecord

Best Java code snippets using org.eclipse.persistence.eis.EISCollectionChangeRecord.simpleRemoveChangeSet (Showing top 6 results out of 315)

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

  /**
   * Remove stuff from an unordered collection.
   */
  private void simpleRemoveFromCollectionChangeRecordWithoutOrder(Object referenceKey, Object changeSetToRemove, ObjectChangeSet changeSet, AbstractSession session) {
    EISCollectionChangeRecord changeRecord = (EISCollectionChangeRecord)changeSet.getChangesForAttributeNamed(this.getAttributeName());
    if (changeRecord == null) {
      changeRecord = new EISCollectionChangeRecord(changeSet, this.getAttributeName(), this.getDatabaseMapping());
      changeSet.addChange(changeRecord);
    }
    changeRecord.simpleRemoveChangeSet(changeSetToRemove);
  }
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * Remove stuff from an unordered collection.
 */
private void simpleRemoveFromCollectionChangeRecordWithoutOrder(Object referenceKey, Object changeSetToRemove, ObjectChangeSet changeSet, AbstractSession session) {
  EISCollectionChangeRecord changeRecord = (EISCollectionChangeRecord)changeSet.getChangesForAttributeNamed(getAttributeName());
  if (changeRecord == null) {
    changeRecord = new EISCollectionChangeRecord(changeSet, getAttributeName(), getDatabaseMapping());
    changeSet.addChange(changeRecord);
  }
  changeRecord.simpleRemoveChangeSet(changeSetToRemove);
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

  /**
   * Remove stuff from an unordered collection.
   */
  private void simpleRemoveFromCollectionChangeRecordWithoutOrder(Object referenceKey, Object changeSetToRemove, ObjectChangeSet changeSet, AbstractSession session) {
    EISCollectionChangeRecord changeRecord = (EISCollectionChangeRecord)changeSet.getChangesForAttributeNamed(this.getAttributeName());
    if (changeRecord == null) {
      changeRecord = new EISCollectionChangeRecord(changeSet, this.getAttributeName(), this.getDatabaseMapping());
      changeSet.addChange(changeRecord);
    }
    changeRecord.simpleRemoveChangeSet(changeSetToRemove);
  }
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * Remove stuff from an unordered collection.
 */
private void simpleRemoveFromCollectionChangeRecordWithoutOrder(Object referenceKey, Object changeSetToRemove, ObjectChangeSet changeSet, AbstractSession session) {
  EISCollectionChangeRecord changeRecord = (EISCollectionChangeRecord)changeSet.getChangesForAttributeNamed(getAttributeName());
  if (changeRecord == null) {
    changeRecord = new EISCollectionChangeRecord(changeSet, getAttributeName(), getDatabaseMapping());
    changeSet.addChange(changeRecord);
  }
  changeRecord.simpleRemoveChangeSet(changeSetToRemove);
}
 
origin: com.haulmont.thirdparty/eclipselink

  /**
   * Remove stuff from an unordered collection.
   */
  private void simpleRemoveFromCollectionChangeRecordWithoutOrder(Object referenceKey, Object changeSetToRemove, ObjectChangeSet changeSet, AbstractSession session) {
    EISCollectionChangeRecord changeRecord = (EISCollectionChangeRecord)changeSet.getChangesForAttributeNamed(this.getAttributeName());
    if (changeRecord == null) {
      changeRecord = new EISCollectionChangeRecord(changeSet, this.getAttributeName(), this.getDatabaseMapping());
      changeSet.addChange(changeRecord);
    }
    changeRecord.simpleRemoveChangeSet(changeSetToRemove);
  }
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * Remove stuff from an unordered collection.
 */
private void simpleRemoveFromCollectionChangeRecordWithoutOrder(Object referenceKey, Object changeSetToRemove, ObjectChangeSet changeSet, AbstractSession session) {
  EISCollectionChangeRecord changeRecord = (EISCollectionChangeRecord)changeSet.getChangesForAttributeNamed(this.getAttributeName());
  if (changeRecord == null) {
    changeRecord = new EISCollectionChangeRecord(changeSet, this.getAttributeName(), this.getDatabaseMapping());
    changeSet.addChange(changeRecord);
  }
  changeRecord.simpleRemoveChangeSet(changeSetToRemove);
}
 
org.eclipse.persistence.eisEISCollectionChangeRecordsimpleRemoveChangeSet

Javadoc

Remove a change set after it has been applied.

Popular methods of EISCollectionChangeRecord

  • <init>
    Construct a ChangeRecord that can be used to represent the changes to an unordered collection.
  • addAddedChangeSet
    Add an added change set.
  • addChangedMapKeyChangeSet
    Add an changed key change set.
  • addRemovedChangeSet
    Add an removed change set.
  • getAdds
    ADVANCED: Return the added stuff. The contents of this collection is determined by the mapping that
  • getChangedMapKeys
    ADVANCED: Return the stuff whose Map keys have changed. The contents of this collection is determine
  • getOwner
  • getRemoves
    ADVANCED: Return the removed stuff. The contents of this collection is determined by the mapping tha
  • hasAdds
    Return whether any adds have been recorded with the change record. Directly reference the instance v
  • hasChangedMapKeys
    Return whether any changed map keys have been recorded with the change record. Directly reference th
  • hasChanges
    Return whether any changes have been recorded with the change record.
  • hasRemoves
    Return whether any removes have been recorded with the change record. Directly reference the instanc
  • hasChanges,
  • hasRemoves,
  • removeAddedChangeSet,
  • removeRemovedChangeSet,
  • simpleAddChangeSet

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getResourceAsStream (ClassLoader)
  • compareTo (BigDecimal)
  • setContentView (Activity)
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Github Copilot alternatives
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