All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class COM.objectspace.jgl.GreaterEqualCollationKey

java.lang.Object
   |
   +----COM.objectspace.jgl.GreaterEqualCollationKey

public final class GreaterEqualCollationKey
extends Object
implements BinaryPredicate
GreaterEqualCollationKey is a binary predicate that returns true if the first operand as a string is greater than or equal to the second operand as a string when compared using the given Collator object. Instead of using the compare() call, getCollationKey() is used and the results of that are compared. If either operand is itself a CollationKey object, then that operand is used without getting a new key from the collator.

If an explicit Collator object is not given, the default is used.

Version:
2.0.2
Author:
ObjectSpace, Inc.
See Also:
Collator, CollationKey, CollateExamples

Constructor Index

 o GreaterEqualCollationKey()
Construct a GreaterEqualCollationKey function object that uses the collator object for the current default locale to compare objects.
 o GreaterEqualCollationKey(Collator)
Construct a GreaterEqualCollationKey function object that uses the given collator object to compare objects.

Method Index

 o execute(Object, Object)
Return true if the first operand is greater than or equal to the second operand.

Constructors

 o GreaterEqualCollationKey
 public GreaterEqualCollationKey()
Construct a GreaterEqualCollationKey function object that uses the collator object for the current default locale to compare objects.

 o GreaterEqualCollationKey
 public GreaterEqualCollationKey(Collator collator)
Construct a GreaterEqualCollationKey function object that uses the given collator object to compare objects.

Parameters:
collator - The Collator object that is to be used for comparisons.

Methods

 o execute
 public boolean execute(Object first,
                        Object second)
Return true if the first operand is greater than or equal to the second operand. Note: CollationKeys created by different Collators can not be compared.

Parameters:
first - The first operand.
second - The second operand.
Returns:
true if the sort key of the first operand is greater than or equal to that of the second.
See Also:
compareTo

All Packages  Class Hierarchy  This Package  Previous  Next  Index