java.lang.Object | +----java.text.Collator | +----java.text.RuleBasedCollator
The RuleBasedCollator
class is a concrete subclass of
Collator
that provides a simple, data-driven, table collator.
With this class you can create a customized table-based Collator
.
RuleBasedCollator
maps characters to sort keys.
RuleBasedCollator
has the following restrictions
for efficiency (other subclasses may be used for more complex languages) :
0xE800
-0xF8FF
.
The collation table is composed of a list of collation rules, where each rule is of three forms:
The following demonstrates how to create your own collation rules:
b c
is treated as bc
.
'@' : Indicates that accents are sorted backwards, as in French.
'&' : Indicates that the next rule follows the position to where the reset text-argument would be sorted.
This sounds more complicated than it is in practice. For example, the following are equivalent ways of expressing the same thing:
Notice that the order is important, as the subsequent item goes immediately after the text-argument. The following are not equivalent:a
Either the text-argument must already be present in the sequence, or some initial substring of the text-argument must be present. (e.g. "a Ignorable Charactersa
For ignorable characters, the first rule must start with a relation (the examples we have used above are really fragments; "a Normalization and Accents
The Collator
object automatically normalizes text internally
to separate accents from base characters where possible. This is done both when
processing the rules, and when comparing two strings. Collator
also uses the Unicode canonical mapping to ensure that combining sequences
are sorted properly.
Errors
The following are errors:
RuleBasedCollator
throws
a ParseException
.
Examples
Simple: "Norwegian: "
Normally, to create a rule-based Collator object, you will use
Combining
Another more interesting example would be to make changes on an existing
table to create a new
The following example demonstrates how to change the order of
non-spacing accents,
The last example shows how to put new primary ordering in before the
default setting. For example, in Japanese
Collator
's factory method getInstance
.
However, to create a rule-based Collator object with specialized
rules tailored to your needs, you construct the RuleBasedCollator
with the rules contained in a String
object. For example:
Or:
String Simple = "
String Norwegian = "
Collator
s is as simple as concatenating strings.
Here's an example that combines two Collator
s from two
different locales:
// Create an en_US Collator object
RuleBasedCollator en_USCollator = (RuleBasedCollator)
Collator.getInstance(new Locale("en", "US", ""));
// Create a da_DK Collator object
RuleBasedCollator da_DKCollator = (RuleBasedCollator)
Collator.getInstance(new Locale("da", "DK", ""));
// Combine the two
// First, get the collation rules from en_USCollator
String en_USRules = en_USCollator.getRules();
// Second, get the collation rules from da_DKCollator
String da_DKRules = da_DKCollator.getRules();
RuleBasedCollator newCollator =
new RuleBasedCollator(en_USRules + da_DKRules);
// newCollator has the combined rules
Collator
object. For example, add
"& C
// Create a new Collator object with additional rules
String addRules = "& C
// old rule
String oldRules = "=?;?;?;?" // main accents
+ ";?;?;?;?" // main accents
+ ";?;?;?;?" // main accents
+ ";?;?;?;?" // main accents
+ ";?;?;?;?" // main accents
+ "
Collator
, you
can either sort English characters before or after Japanese characters,
// get en_US Collator rules
RuleBasedCollator en_USCollator = (RuleBasedCollator)Collator.getInstance(Locale.US);
// add a few Japanese character to sort before English characters
// suppose the last character before the first base letter 'a' in
// the English collation rule is ?
String jaString = "& ? , ? < ?, ?"; rulebasedcollator myjapanesecollator="new" rulebasedcollator(en_uscollator.getrules() + jastring);
Constructor Index
Method Index
Constructors
RuleBasedCollator
public RuleBasedCollator(String rules) throws ParseException
Methods
getRules
public String getRules()
getCollationElementIterator
public CollationElementIterator getCollationElementIterator(String source)
compare
public int compare(String source,
String target)
getCollationKey
public CollationKey getCollationKey(String source)
clone
public Object clone()
equals
public boolean equals(Object obj)
hashCode
public int hashCode()