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

/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DSortOrder.java59 * @param sortKey The sort key to use in this sort order.
61 public SortOrder(SortKey sortKey) argument
63 this.sortKeys = new SortKey[] { sortKey };
141 for(SortKey sortKey : sortKeys)
143 hashCode += sortKey.hashCode();
/forgerock/opendj2/src/server/org/opends/server/types/
H A DSortOrder.java58 * @param sortKey The sort key to use in this sort order.
60 public SortOrder(SortKey sortKey) argument
62 this.sortKeys = new SortKey[] { sortKey };
140 for(SortKey sortKey : sortKeys)
142 hashCode += sortKey.hashCode();
/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DSortOrder.java59 * @param sortKey The sort key to use in this sort order.
61 public SortOrder(SortKey sortKey) argument
63 this.sortKeys = new SortKey[] { sortKey };
141 for(SortKey sortKey : sortKeys)
143 hashCode += sortKey.hashCode();
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DSortOrder.java59 * @param sortKey The sort key to use in this sort order.
61 public SortOrder(SortKey sortKey) argument
63 this.sortKeys = new SortKey[] { sortKey };
141 for(SortKey sortKey : sortKeys)
143 hashCode += sortKey.hashCode();
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DSortOrder.java58 * @param sortKey The sort key to use in this sort order.
60 public SortOrder(SortKey sortKey) argument
62 this.sortKeys = new SortKey[] { sortKey };
140 for(SortKey sortKey : sortKeys)
142 hashCode += sortKey.hashCode();
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/
H A DSortOrder.java58 * @param sortKey The sort key to use in this sort order.
60 public SortOrder(SortKey sortKey) argument
62 this.sortKeys = new SortKey[] { sortKey };
142 for(SortKey sortKey : sortKeys)
144 hashCode += sortKey.hashCode();
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DIndexBuffer.java62 void put(VLVIndex index, ByteString sortKey); argument
64 void remove(VLVIndex index, ByteString sortKey); argument
140 void addSortKey(ByteString sortKey) argument
142 if (!remove(deletedSortKeys, sortKey))
148 addedSortKeys.add(sortKey);
152 void deleteSortKey(ByteString sortKey) argument
154 if (!remove(addedSortKeys, sortKey))
160 deletedSortKeys.add(sortKey);
164 private static boolean remove(TreeSet<ByteString> sortKeys, ByteString sortKey) argument
166 return sortKeys != null ? sortKeys.remove(sortKey)
242 put(VLVIndex index, ByteString sortKey) argument
248 remove(VLVIndex index, ByteString sortKey) argument
302 put(VLVIndex index, ByteString sortKey) argument
320 remove(VLVIndex index, ByteString sortKey) argument
388 put(VLVIndex index, ByteString sortKey) argument
393 remove(VLVIndex index, ByteString sortKey) argument
[all...]

Completed in 63 milliseconds