Searched defs:anotherEntryIDSet (Results 1 - 1 of 1) sorted by relevance

/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DEntryIDSet.java191 public void addAll(EntryIDSet anotherEntryIDSet) argument
193 if (anotherEntryIDSet.size() == 0)
200 entryIDs = anotherEntryIDSet.getIDs();
204 final int overlap = compareForOverlap(getRange(), anotherEntryIDSet.getRange());
207 entryIDs = concatIdsFrom(entryIDs, anotherEntryIDSet.getIDs());
211 entryIDs = concatIdsFrom(anotherEntryIDSet.getIDs(), entryIDs);
215 entryIDs = mergeOverlappingEntryIDSet(entryIDs, anotherEntryIDSet.getIDs());

Completed in 21 milliseconds