Searched defs:CollationKey (Results 1 - 2 of 2) sorted by relevance

/dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/text/
H A DCollationKey.java19 public final class CollationKey implements Comparable class in inherits:Comparable
25 * @param target CollationKey to be compared
30 public int compareTo(CollationKey target)
79 * Argument is casted to CollationKey
80 * @param target CollationKey to be compared
87 return compareTo((CollationKey)target);
92 * Target is first casted to CollationKey and bitwise compared.
103 // checks getClass here since CollationKey is final not subclassable
108 return compareTo((CollationKey)target) == Collator.RESULT_EQUAL;
112 * Creates a hash code for this CollationKey
159 CollationKey() method in class:CollationKey
167 CollationKey(byte[] bytes) method in class:CollationKey
[all...]
/dalvik/libcore/text/src/main/java/java/text/
H A DCollationKey.java25 * Comparing two {@code CollationKey} instances returns the relative order of
33 * Both the method {@code CollationKey.compareTo(CollationKey)} and the method
38 * During the construction of a {@code CollationKey}, the entire source string
40 * are stored in the {@code CollationKey}. When
41 * {@code CollationKey.compareTo(CollationKey)} executes, it performs bitwise
43 * the {@code CollationKey}, but once the key is created, binary comparisons
59 * CollationKey[] keys = new CollationKey[
84 public final class CollationKey implements Comparable<CollationKey> { class in inherits:Comparable
90 CollationKey(String source, com.ibm.icu4jni.text.CollationKey key) { method in class:CollationKey
[all...]

Completed in 71 milliseconds