Package net.sf.saxon.expr.sort
Class CaseFirstCollator
- java.lang.Object
-
- net.sf.saxon.expr.sort.CaseFirstCollator
-
- All Implemented Interfaces:
StringCollator
public class CaseFirstCollator extends java.lang.Object implements StringCollator
A StringCollator that sorts lowercase before uppercase, or vice versa.Case is irrelevant, unless the strings are equal ignoring case, in which case lowercase comes first.
-
-
Constructor Summary
Constructors Constructor Description CaseFirstCollator(StringCollator base, boolean upperFirst, java.lang.String collationURI)
Create a CaseFirstCollator
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
comparesEqual(UnicodeString s1, UnicodeString s2)
Compare two strings for equality.int
compareStrings(UnicodeString a, UnicodeString b)
Compare two string objects: case is irrelevant, unless the strings are equal ignoring case, in which case lowercase comes first.AtomicMatchKey
getCollationKey(UnicodeString s)
Get a collation key for a String.java.lang.String
getCollationURI()
Get the collation URI.static StringCollator
makeCaseOrderedCollator(java.lang.String uri, StringCollator stringCollator, java.lang.String caseOrder)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.sf.saxon.lib.StringCollator
isEqualToEmpty
-
-
-
-
Constructor Detail
-
CaseFirstCollator
public CaseFirstCollator(StringCollator base, boolean upperFirst, java.lang.String collationURI)
Create a CaseFirstCollator- Parameters:
base
- the base collator, which determines how characters are sorted irrespective of caseupperFirst
- true if uppercase precedes lowercase, false otherwisecollationURI
- the URI of the collation
-
-
Method Detail
-
makeCaseOrderedCollator
public static StringCollator makeCaseOrderedCollator(java.lang.String uri, StringCollator stringCollator, java.lang.String caseOrder) throws XPathException
- Throws:
XPathException
-
getCollationURI
public java.lang.String getCollationURI()
Get the collation URI. It must be possible to use this collation URI to reconstitute the collation- Specified by:
getCollationURI
in interfaceStringCollator
- Returns:
- a collation URI that can be used to reconstruct the collation when an XSLT package is reloaded.
-
compareStrings
public int compareStrings(UnicodeString a, UnicodeString b)
Compare two string objects: case is irrelevant, unless the strings are equal ignoring case, in which case lowercase comes first.- Specified by:
compareStrings
in interfaceStringCollator
- Parameters:
a
- the first stringb
- the second string- Returns:
- <0 if a<b, 0 if a=b, >0 if a>b
- Throws:
java.lang.ClassCastException
- if the objects are of the wrong type for this Comparer
-
comparesEqual
public boolean comparesEqual(UnicodeString s1, UnicodeString s2)
Compare two strings for equality. This may be more efficient than using compareStrings and testing whether the result is zero, but it must give the same result- Specified by:
comparesEqual
in interfaceStringCollator
- Parameters:
s1
- the first strings2
- the second string- Returns:
- true if and only if the strings are considered equal,
-
getCollationKey
public AtomicMatchKey getCollationKey(UnicodeString s)
Get a collation key for a String. The essential property of collation keys is that if (and only if) two strings are equal under the collation, then comparing the collation keys using the equals() method must return true.- Specified by:
getCollationKey
in interfaceStringCollator
- Parameters:
s
- the string whose collation key is required- Returns:
- the collation key
-
-