Searched refs:ascending (Results 1 - 25 of 41) sorted by relevance

12

/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/
H A DSortKey.java36 * whether the sort should be ascending or descending. It may also
54 /** The indication of whether the sort should be ascending. */
55 private boolean ascending; field in class:SortKey
65 * @param ascending Indicates whether the sort should be in
66 * ascending order rather than descending.
68 public SortKey(AttributeType attributeType, boolean ascending) argument
70 this(attributeType, ascending, null);
79 * @param ascending Indicates whether the sort should be in
80 * ascending order rather than descending.
84 public SortKey(AttributeType attributeType, boolean ascending, MatchingRul argument
113 public boolean ascending() method in class:SortKey
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DSortKey.java41 * whether the sort should be ascending or descending. It may also
61 // The indication of whether the sort should be ascending.
62 private boolean ascending; field in class:SortKey
73 * @param ascending Indicates whether the sort should be in
74 * ascending order rather than descending.
76 public SortKey(AttributeType attributeType, boolean ascending) argument
79 this.ascending = ascending;
90 * @param ascending Indicates whether the sort should be in
91 * ascending orde
95 SortKey(AttributeType attributeType, boolean ascending, OrderingMatchingRule orderingRule) argument
125 public boolean ascending() method in class:SortKey
[all...]
/forgerock/opendj2/src/server/org/opends/server/types/
H A DSortKey.java40 * whether the sort should be ascending or descending. It may also
60 // The indication of whether the sort should be ascending.
61 private boolean ascending; field in class:SortKey
72 * @param ascending Indicates whether the sort should be in
73 * ascending order rather than descending.
75 public SortKey(AttributeType attributeType, boolean ascending) argument
78 this.ascending = ascending;
89 * @param ascending Indicates whether the sort should be in
90 * ascending orde
94 SortKey(AttributeType attributeType, boolean ascending, OrderingMatchingRule orderingRule) argument
124 public boolean ascending() method in class:SortKey
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DSortKey.java41 * whether the sort should be ascending or descending. It may also
61 // The indication of whether the sort should be ascending.
62 private boolean ascending; field in class:SortKey
73 * @param ascending Indicates whether the sort should be in
74 * ascending order rather than descending.
76 public SortKey(AttributeType attributeType, boolean ascending) argument
79 this.ascending = ascending;
90 * @param ascending Indicates whether the sort should be in
91 * ascending orde
95 SortKey(AttributeType attributeType, boolean ascending, OrderingMatchingRule orderingRule) argument
125 public boolean ascending() method in class:SortKey
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DSortKey.java41 * whether the sort should be ascending or descending. It may also
61 // The indication of whether the sort should be ascending.
62 private boolean ascending; field in class:SortKey
73 * @param ascending Indicates whether the sort should be in
74 * ascending order rather than descending.
76 public SortKey(AttributeType attributeType, boolean ascending) argument
79 this.ascending = ascending;
90 * @param ascending Indicates whether the sort should be in
91 * ascending orde
95 SortKey(AttributeType attributeType, boolean ascending, OrderingMatchingRule orderingRule) argument
125 public boolean ascending() method in class:SortKey
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DSortKey.java40 * whether the sort should be ascending or descending. It may also
60 // The indication of whether the sort should be ascending.
61 private boolean ascending; field in class:SortKey
72 * @param ascending Indicates whether the sort should be in
73 * ascending order rather than descending.
75 public SortKey(AttributeType attributeType, boolean ascending) argument
78 this.ascending = ascending;
89 * @param ascending Indicates whether the sort should be in
90 * ascending orde
94 SortKey(AttributeType attributeType, boolean ascending, OrderingMatchingRule orderingRule) argument
124 public boolean ascending() method in class:SortKey
[all...]
/forgerock/opendj2/src/server/org/opends/server/backends/jeb/
H A DVLVKeyComparator.java55 private boolean[] ascending; field in class:VLVKeyComparator
62 * @param ascending The array of booleans indicating the ordering for
66 boolean[] ascending)
69 this.ascending = ascending;
91 * <CODE>b2</CODE> in ascending order, a positive integer if
92 * <CODE>b1</CODE> should come after <CODE>b2</CODE> in ascending
188 if(ascending[j])
263 * the given values in ascending order, a positive integer if
265 * ascending orde
65 VLVKeyComparator(OrderingMatchingRule[] orderingRules, boolean[] ascending) argument
[all...]
H A DVLVIndex.java164 boolean[] ascending = new boolean[sortAttrs.length];
171 ascending[i] = false;
176 ascending[i] = true;
199 sortKeys[i] = new SortKey(attrType, ascending[i]);
204 this.comparator = new VLVKeyComparator(orderingRules, ascending);
1548 // in ascending order, we want to find the lowest value; for sorting in
1718 boolean[] ascending = new boolean[sortAttrs.length];
1725 ascending[i] = false;
1730 ascending[i] = true;
1755 sortKeys[i] = new SortKey(attrType, ascending[
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/jeb/
H A DVLVKeyComparator.java56 private boolean[] ascending; field in class:VLVKeyComparator
63 * @param ascending The array of booleans indicating the ordering for
67 boolean[] ascending)
70 this.ascending = ascending;
92 * <CODE>b2</CODE> in ascending order, a positive integer if
93 * <CODE>b1</CODE> should come after <CODE>b2</CODE> in ascending
189 if(ascending[j])
264 * the given values in ascending order, a positive integer if
266 * ascending orde
66 VLVKeyComparator(OrderingMatchingRule[] orderingRules, boolean[] ascending) argument
[all...]
H A DVLVIndex.java165 boolean[] ascending = new boolean[sortAttrs.length];
172 ascending[i] = false;
177 ascending[i] = true;
200 sortKeys[i] = new SortKey(attrType, ascending[i]);
205 this.comparator = new VLVKeyComparator(orderingRules, ascending);
1549 // in ascending order, we want to find the lowest value; for sorting in
1719 boolean[] ascending = new boolean[sortAttrs.length];
1726 ascending[i] = false;
1731 ascending[i] = true;
1756 sortKeys[i] = new SortKey(attrType, ascending[
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/jeb/
H A DVLVKeyComparator.java56 private boolean[] ascending; field in class:VLVKeyComparator
63 * @param ascending The array of booleans indicating the ordering for
67 boolean[] ascending)
70 this.ascending = ascending;
92 * <CODE>b2</CODE> in ascending order, a positive integer if
93 * <CODE>b1</CODE> should come after <CODE>b2</CODE> in ascending
189 if(ascending[j])
264 * the given values in ascending order, a positive integer if
266 * ascending orde
66 VLVKeyComparator(OrderingMatchingRule[] orderingRules, boolean[] ascending) argument
[all...]
H A DVLVIndex.java165 boolean[] ascending = new boolean[sortAttrs.length];
172 ascending[i] = false;
177 ascending[i] = true;
200 sortKeys[i] = new SortKey(attrType, ascending[i]);
205 this.comparator = new VLVKeyComparator(orderingRules, ascending);
1549 // in ascending order, we want to find the lowest value; for sorting in
1719 boolean[] ascending = new boolean[sortAttrs.length];
1726 ascending[i] = false;
1731 ascending[i] = true;
1756 sortKeys[i] = new SortKey(attrType, ascending[
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/
H A DVLVKeyComparator.java55 private boolean[] ascending; field in class:VLVKeyComparator
62 * @param ascending The array of booleans indicating the ordering for
66 boolean[] ascending)
69 this.ascending = ascending;
91 * <CODE>b2</CODE> in ascending order, a positive integer if
92 * <CODE>b1</CODE> should come after <CODE>b2</CODE> in ascending
188 if(ascending[j])
263 * the given values in ascending order, a positive integer if
265 * ascending orde
65 VLVKeyComparator(OrderingMatchingRule[] orderingRules, boolean[] ascending) argument
[all...]
H A DVLVIndex.java164 boolean[] ascending = new boolean[sortAttrs.length];
171 ascending[i] = false;
176 ascending[i] = true;
199 sortKeys[i] = new SortKey(attrType, ascending[i]);
204 this.comparator = new VLVKeyComparator(orderingRules, ascending);
1548 // in ascending order, we want to find the lowest value; for sorting in
1718 boolean[] ascending = new boolean[sortAttrs.length];
1725 ascending[i] = false;
1730 ascending[i] = true;
1755 sortKeys[i] = new SortKey(attrType, ascending[
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/
H A DVLVKeyComparator.java56 private boolean[] ascending; field in class:VLVKeyComparator
63 * @param ascending The array of booleans indicating the ordering for
67 boolean[] ascending)
70 this.ascending = ascending;
92 * <CODE>b2</CODE> in ascending order, a positive integer if
93 * <CODE>b1</CODE> should come after <CODE>b2</CODE> in ascending
189 if(ascending[j])
264 * the given values in ascending order, a positive integer if
266 * ascending orde
66 VLVKeyComparator(OrderingMatchingRule[] orderingRules, boolean[] ascending) argument
[all...]
H A DVLVIndex.java165 boolean[] ascending = new boolean[sortAttrs.length];
172 ascending[i] = false;
177 ascending[i] = true;
200 sortKeys[i] = new SortKey(attrType, ascending[i]);
205 this.comparator = new VLVKeyComparator(orderingRules, ascending);
1549 // in ascending order, we want to find the lowest value; for sorting in
1719 boolean[] ascending = new boolean[sortAttrs.length];
1726 ascending[i] = false;
1731 ascending[i] = true;
1756 sortKeys[i] = new SortKey(attrType, ascending[
[all...]
/forgerock/openidm-v4/openidm-repo-jdbc/src/main/java/org/forgerock/openidm/repo/jdbc/impl/
H A DSQLBuilder.java174 final boolean ascending; field in class:SQLBuilder.OrderBy
176 OrderBy(String order, boolean ascending) { argument
178 this.ascending = ascending;
182 return order + " " + (ascending ? "ASC" : "DESC");
321 * @param ascending whether it is ascending
324 SQLBuilder orderBy(String orderBy, boolean ascending) { argument
325 this.orderBys.add(new OrderBy(orderBy, ascending));
/forgerock/opendj-b2.6/src/server/org/opends/server/controls/
H A DServerSideSortRequestControl.java126 boolean ascending = true;
146 ascending = ! reader.readBoolean();
159 sortKeys.add(new SortKey(attrType, ascending, orderingRule));
475 boolean ascending = true;
478 ascending = false;
491 sortKeys.add(new SortKey(attrType, ascending, orderingRule));
540 if (! sortKey.ascending())
/forgerock/opendj2/src/server/org/opends/server/controls/
H A DServerSideSortRequestControl.java125 boolean ascending = true;
145 ascending = ! reader.readBoolean();
158 sortKeys.add(new SortKey(attrType, ascending, orderingRule));
474 boolean ascending = true;
477 ascending = false;
490 sortKeys.add(new SortKey(attrType, ascending, orderingRule));
539 if (! sortKey.ascending())
/forgerock/opendj2.6.2/src/server/org/opends/server/controls/
H A DServerSideSortRequestControl.java126 boolean ascending = true;
146 ascending = ! reader.readBoolean();
159 sortKeys.add(new SortKey(attrType, ascending, orderingRule));
475 boolean ascending = true;
478 ascending = false;
491 sortKeys.add(new SortKey(attrType, ascending, orderingRule));
540 if (! sortKey.ascending())
/forgerock/opendj2-jel-hg/src/server/org/opends/server/controls/
H A DServerSideSortRequestControl.java126 boolean ascending = true;
146 ascending = ! reader.readBoolean();
159 sortKeys.add(new SortKey(attrType, ascending, orderingRule));
475 boolean ascending = true;
478 ascending = false;
491 sortKeys.add(new SortKey(attrType, ascending, orderingRule));
540 if (! sortKey.ascending())
/forgerock/opendj2-hg/src/server/org/opends/server/controls/
H A DServerSideSortRequestControl.java125 boolean ascending = true;
145 ascending = ! reader.readBoolean();
158 sortKeys.add(new SortKey(attrType, ascending, orderingRule));
474 boolean ascending = true;
477 ascending = false;
490 sortKeys.add(new SortKey(attrType, ascending, orderingRule));
539 if (! sortKey.ascending())
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/controls/
H A DServerSideSortRequestControl.java118 boolean ascending = true;
138 ascending = ! reader.readBoolean();
149 sortKeys.add(new SortKey(attrType, ascending, orderingRule));
459 boolean ascending = decodedKey2 == null || !decodedKey2.equals("r");
467 sortKeys.add(new SortKey(attrType, ascending, orderingRule));
516 if (! sortKey.ascending())
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DVLVIndex.java307 final boolean ascending;
312 ascending = false;
317 ascending = true;
335 sortKeys[i] = new SortKey(attrType, ascending);
619 encodeVLVKeyValue(normalizedAttributeValue, encodedPrimaryKey, primarySortKey.ascending());
810 encodeVLVKeyValue(sortValue, builder, sortKey.ascending());
820 * {@code null} keys sort after non-{@code null} keys in ascending order
834 final boolean ascending)
836 final byte separator = ascending ? (byte) 0x00 : (byte) 0xff;
839 final byte escape = ascending
833 encodeVLVKeyValue(final ByteString keyBytes, final ByteStringBuilder builder, final boolean ascending) argument
[all...]
/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/rest/query/
H A DQueryResponsePresentation.java187 private int compare(Comparable<Object> first, Comparable<Object> second, boolean ascending) {
199 if (!ascending) {

Completed in 98 milliseconds

12