Searched defs:value2 (Results 101 - 125 of 168) sorted by relevance

1234567

/forgerock/opendj2-jel-hg/src/server/org/opends/server/schema/
H A DCaseExactOrderingMatchingRule.java199 * @param value2 The normalized form of the second value to compare.
202 * <CODE>value2</CODE> in ascending order, a positive integer if
203 * <CODE>value1</CODE> should come after <CODE>value2</CODE> in
207 public int compareValues(ByteSequence value1, ByteSequence value2) argument
209 return value1.compareTo(value2);
H A DCaseIgnoreOrderingMatchingRule.java199 * @param value2 The normalized form of the second value to compare.
202 * <CODE>value2</CODE> in ascending order, a positive integer if
203 * <CODE>value1</CODE> should come after <CODE>value2</CODE> in
207 public int compareValues(ByteSequence value1, ByteSequence value2) argument
209 return value1.compareTo(value2);
H A DDirectoryStringFirstComponentEqualityMatchingRule.java191 * @param value2 The normalized form of the second value to compare.
197 public boolean areEqual(ByteSequence value1, ByteSequence value2) argument
243 String value2String = value2.toString();
H A DGeneralizedTimeOrderingMatchingRule.java200 * @param value2 The normalized form of the second value to compare.
203 * <CODE>value2</CODE> in ascending order, a positive integer if
204 * <CODE>value1</CODE> should come after <CODE>value2</CODE> in
208 public int compareValues(ByteSequence value1, ByteSequence value2) argument
213 long time2 = GeneralizedTimeSyntax.decodeGeneralizedTimeValue(value2);
H A DIntegerFirstComponentEqualityMatchingRule.java204 * @param value2 The normalized form of the second value to compare.
210 public boolean areEqual(ByteSequence value1, ByteSequence value2) argument
215 int intValue2 = extractIntValue(value2.toString());
H A DIntegerOrderingMatchingRule.java371 * @param value2 The normalized form of the second value to compare.
374 * <CODE>value2</CODE> in ascending order, a positive integer if
375 * <CODE>value1</CODE> should come after <CODE>value2</CODE> in
379 public int compareValues(ByteSequence value1, ByteSequence value2) argument
382 int b2Length = value2.length();
392 else if (value2.byteAt(0) == '-')
417 if (value2.byteAt(0) == '-')
431 if (value1.byteAt(i) > value2.byteAt(i))
435 else if (value1.byteAt(i) < value2.byteAt(i))
449 else if (value2
[all...]
H A DNumericStringOrderingMatchingRule.java211 * @param value2 The normalized form of the second value to compare.
214 * <CODE>value2</CODE> in ascending order, a positive integer if
215 * <CODE>value1</CODE> should come after <CODE>value2</CODE> in
219 public int compareValues(ByteSequence value1, ByteSequence value2) argument
221 return value1.compareTo(value2);
H A DObjectIdentifierFirstComponentEqualityMatchingRule.java196 * @param value2 The normalized form of the second value to compare.
202 public boolean areEqual(ByteSequence value1, ByteSequence value2) argument
249 String value2String = value2.toString();
H A DOctetStringOrderingMatchingRule.java166 * @param value2 The normalized form of the second value to compare.
169 * <CODE>value2</CODE> in ascending order, a positive integer if
170 * <CODE>value1</CODE> should come after <CODE>value2</CODE> in
174 public int compareValues(ByteSequence value1, ByteSequence value2) argument
176 return value1.compareTo(value2);
H A DUUIDOrderingMatchingRule.java276 * @param value2 The normalized form of the second value to compare.
279 * <CODE>value2</CODE> in ascending order, a positive integer if
280 * <CODE>value1</CODE> should come after <CODE>value2</CODE> in
284 public int compareValues(ByteSequence value1, ByteSequence value2) argument
286 return value1.compareTo(value2);
H A DWordEqualityMatchingRule.java202 * @param value2 The normalized form of the second value to compare.
208 public boolean areEqual(ByteSequence value1, ByteSequence value2) argument
214 String valueStr2 = value2.toString();
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DSortKey.java148 * @param value2 The second value to be compared.
157 AttributeValue value2)
162 if (value2 == null)
171 else if (value2 == null)
193 value2.getNormalizedValue());
197 return rule.compareValues(value2.getNormalizedValue(),
219 orderingRule.normalizeValue(value2.getValue()));
224 orderingRule.normalizeValue(value2.getValue()),
156 compareValues(AttributeValue value1, AttributeValue value2) argument
/forgerock/opendj2-hg/src/server/org/opends/server/replication/plugin/
H A DHistoricalCsnOrderingMatchingRule.java68 * @param value2 second value to compare
71 public int compareValues(ByteSequence value1, ByteSequence value2) argument
73 return value1.compareTo(value2);
/forgerock/opendj2-hg/src/server/org/opends/server/schema/
H A DCaseExactOrderingMatchingRule.java198 * @param value2 The normalized form of the second value to compare.
201 * <CODE>value2</CODE> in ascending order, a positive integer if
202 * <CODE>value1</CODE> should come after <CODE>value2</CODE> in
206 public int compareValues(ByteSequence value1, ByteSequence value2) argument
208 return value1.compareTo(value2);
H A DCaseIgnoreOrderingMatchingRule.java198 * @param value2 The normalized form of the second value to compare.
201 * <CODE>value2</CODE> in ascending order, a positive integer if
202 * <CODE>value1</CODE> should come after <CODE>value2</CODE> in
206 public int compareValues(ByteSequence value1, ByteSequence value2) argument
208 return value1.compareTo(value2);
H A DDirectoryStringFirstComponentEqualityMatchingRule.java190 * @param value2 The normalized form of the second value to compare.
196 public boolean areEqual(ByteSequence value1, ByteSequence value2) argument
242 String value2String = value2.toString();
H A DGeneralizedTimeOrderingMatchingRule.java199 * @param value2 The normalized form of the second value to compare.
202 * <CODE>value2</CODE> in ascending order, a positive integer if
203 * <CODE>value1</CODE> should come after <CODE>value2</CODE> in
207 public int compareValues(ByteSequence value1, ByteSequence value2) argument
212 long time2 = GeneralizedTimeSyntax.decodeGeneralizedTimeValue(value2);
H A DIntegerFirstComponentEqualityMatchingRule.java203 * @param value2 The normalized form of the second value to compare.
209 public boolean areEqual(ByteSequence value1, ByteSequence value2) argument
214 int intValue2 = extractIntValue(value2.toString());
H A DIntegerOrderingMatchingRule.java370 * @param value2 The normalized form of the second value to compare.
373 * <CODE>value2</CODE> in ascending order, a positive integer if
374 * <CODE>value1</CODE> should come after <CODE>value2</CODE> in
378 public int compareValues(ByteSequence value1, ByteSequence value2) argument
381 int b2Length = value2.length();
391 else if (value2.byteAt(0) == '-')
416 if (value2.byteAt(0) == '-')
430 if (value1.byteAt(i) > value2.byteAt(i))
434 else if (value1.byteAt(i) < value2.byteAt(i))
448 else if (value2
[all...]
H A DNumericStringOrderingMatchingRule.java210 * @param value2 The normalized form of the second value to compare.
213 * <CODE>value2</CODE> in ascending order, a positive integer if
214 * <CODE>value1</CODE> should come after <CODE>value2</CODE> in
218 public int compareValues(ByteSequence value1, ByteSequence value2) argument
220 return value1.compareTo(value2);
H A DObjectIdentifierFirstComponentEqualityMatchingRule.java195 * @param value2 The normalized form of the second value to compare.
201 public boolean areEqual(ByteSequence value1, ByteSequence value2) argument
248 String value2String = value2.toString();
H A DOctetStringOrderingMatchingRule.java165 * @param value2 The normalized form of the second value to compare.
168 * <CODE>value2</CODE> in ascending order, a positive integer if
169 * <CODE>value1</CODE> should come after <CODE>value2</CODE> in
173 public int compareValues(ByteSequence value1, ByteSequence value2) argument
175 return value1.compareTo(value2);
H A DUUIDOrderingMatchingRule.java275 * @param value2 The normalized form of the second value to compare.
278 * <CODE>value2</CODE> in ascending order, a positive integer if
279 * <CODE>value1</CODE> should come after <CODE>value2</CODE> in
283 public int compareValues(ByteSequence value1, ByteSequence value2) argument
285 return value1.compareTo(value2);
H A DWordEqualityMatchingRule.java201 * @param value2 The normalized form of the second value to compare.
207 public boolean areEqual(ByteSequence value1, ByteSequence value2) argument
213 String valueStr2 = value2.toString();
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DSortKey.java147 * @param value2 The second value to be compared.
156 AttributeValue value2)
161 if (value2 == null)
170 else if (value2 == null)
192 value2.getNormalizedValue());
196 return rule.compareValues(value2.getNormalizedValue(),
218 orderingRule.normalizeValue(value2.getValue()));
223 orderingRule.normalizeValue(value2.getValue()),
155 compareValues(AttributeValue value1, AttributeValue value2) argument

Completed in 110 milliseconds

1234567