Home | History | Annotate | Download | only in text

Lines Matching defs:CollationKey

14  * A concrete implementation of the abstract java.text.CollationKey.
16 public final class CollationKey extends java.text.CollationKey {
27 CollationKey(String source, byte[] bytes) {
32 public int compareTo(java.text.CollationKey other) {
35 if (other instanceof CollationKey) {
36 rhsBytes = ((CollationKey) other).bytes;
74 * Target is first casted to CollationKey and bitwise compared.
83 if (!(object instanceof CollationKey)) {
86 return compareTo((CollationKey) object) == 0;
90 * Creates a hash code for this CollationKey.