Java Doc for RuleBasedCollator.java in  » 6.0-JDK-Modules » j2me » java » text » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » j2me » java.text 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.text.Collator
      java.text.RuleBasedCollator

RuleBasedCollator
public class RuleBasedCollator extends Collator (Code)
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) :

  1. If a special collation rule controlled by a <modifier> is specified it applies to the whole collator object.
  2. All non-mentioned characters are at the end of the collation order.

The collation table is composed of a list of collation rules, where each rule is of one of three forms:

 <modifier>
 <relation> <text-argument>
 <reset> <text-argument>
 
The definitions of the rule elements is as follows:
  • Text-Argument: A text-argument is any sequence of characters, excluding special characters (that is, common whitespace characters [0009-000D, 0020] and rule syntax characters [0021-002F, 003A-0040, 005B-0060, 007B-007E]). If those characters are desired, you can put them in single quotes (e.g. ampersand => '&'). Note that unquoted white space characters are ignored; e.g. b c is treated as bc.
  • Modifier: There are currently two modifiers that turn on special collation rules.
    • '@' : Turns on backwards sorting of accents (secondary differences), as in French.
    • '!' : Turns on Thai/Lao vowel-consonant swapping. If this rule is in force when a Thai vowel of the range \U0E40-\U0E44 precedes a Thai consonant of the range \U0E01-\U0E2E OR a Lao vowel of the range \U0EC0-\U0EC4 precedes a Lao consonant of the range \U0E81-\U0EAE then the vowel is placed after the consonant for collation purposes.

    '@' : Indicates that accents are sorted backwards, as in French.

  • Relation: The relations are the following:
    • '<' : Greater, as a letter difference (primary)
    • ';' : Greater, as an accent difference (secondary)
    • ',' : Greater, as a case difference (tertiary)
    • '=' : Equal
  • Reset: There is a single reset which is used primarily for contractions and expansions, but which can also be used to add a modification at the end of a set of rules.

    '&' : 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:

 a < b < c
 a < b & b < c
 a < c & a < b
 
Notice that the order is important, as the subsequent item goes immediately after the text-argument. The following are not equivalent:
 a < b & a < c
 a < c & a < b
 
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 < b & ae < e" is valid since "a" is present in the sequence before "ae" is reset). In this latter case, "ae" is not entered and treated as a single character; instead, "e" is sorted as if it were expanded to two characters: "a" followed by an "e". This difference appears in natural languages: in traditional Spanish "ch" is treated as though it contracts to a single character (expressed as "c < ch < d"), while in traditional German a-umlaut is treated as though it expanded to two characters (expressed as "a,A < b,B ... &ae;\u00e3&AE;\u00c3"). [\u00e3 and \u00c3 are, of course, the escape sequences for a-umlaut.]

Ignorable Characters

For ignorable characters, the first rule must start with a relation (the examples we have used above are really fragments; "a < b" really should be "< a < b"). If, however, the first relation is not "<", then all the all text-arguments up to the first "<" are ignorable. For example, ", - < a < b" makes "-" an ignorable character, as we saw earlier in the word "black-birds". In the samples for different languages, you see that most accents are ignorable.

Normalization and Accents

RuleBasedCollator automatically processes its rule table to include both pre-composed and combining-character versions of accented characters. Even if the provided rule string contains only base characters and separate combining accent characters, the pre-composed accented characters matching all canonical combinations of characters from the rule string will be entered in the table.

This allows you to use a RuleBasedCollator to compare accented strings even when the collator is set to NO_DECOMPOSITION. There are two caveats, however. First, if the strings to be collated contain combining sequences that may not be in canonical order, you should set the collator to CANONICAL_DECOMPOSITION or FULL_DECOMPOSITION to enable sorting of combining sequences. Second, if the strings contain characters with compatibility decompositions (such as full-width and half-width forms), you must use FULL_DECOMPOSITION, since the rule tables only include canonical mappings.

Errors

The following are errors:

  • A text-argument contains unquoted punctuation symbols (e.g. "a < b-c < d").
  • A relation or reset character not followed by a text-argument (e.g. "a < ,b").
  • A reset where the text-argument (or an initial substring of the text-argument) is not already in the sequence. (e.g. "a < b & e < f")
If you produce one of these errors, a RuleBasedCollator throws a ParseException.

Examples

Simple: "< a < b < c < d"

Norwegian: "< a,A< b,B< c,C< d,D< e,E< f,F< g,G< h,H< i,I< j,J < k,K< l,L< m,M< n,N< o,O< p,P< q,Q< r,R< s,S< t,T < u,U< v,V< w,W< x,X< y,Y< z,Z < \u00E5=a\u030A,\u00C5=A\u030A ;aa,AA< \u00E6,\u00C6< \u00F8,\u00D8"

Normally, to create a rule-based Collator object, you will use 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:

 String Simple = "< a< b< c< d";
 RuleBasedCollator mySimple = new RuleBasedCollator(Simple);
 
Or:
 String Norwegian = "< a,A< b,B< c,C< d,D< e,E< f,F< g,G< h,H< i,I< j,J" +
 "< k,K< l,L< m,M< n,N< o,O< p,P< q,Q< r,R< s,S< t,T" +
 "< u,U< v,V< w,W< x,X< y,Y< z,Z" +
 "< \u00E5=a\u030A,\u00C5=A\u030A" +
 ";aa,AA< \u00E6,\u00C6< \u00F8,\u00D8";
 RuleBasedCollator myNorwegian = new RuleBasedCollator(Norwegian);
 

Combining Collators is as simple as concatenating strings. Here's an example that combines two Collators 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
 

Another more interesting example would be to make changes on an existing table to create a new Collator object. For example, add "&C< ch, cH, Ch, CH" to the en_USCollator object to create your own:

 // Create a new Collator object with additional rules
 String addRules = "&C< ch, cH, Ch, CH";
 RuleBasedCollator myCollator =
 new RuleBasedCollator(en_USCollator + addRules);
 // myCollator contains the new rules
 

The following example demonstrates how to change the order of non-spacing accents,

 // old rule
 String oldRules = "=\u0301;\u0300;\u0302;\u0308"    // main accents
 + ";\u0327;\u0303;\u0304;\u0305"    // main accents
 + ";\u0306;\u0307;\u0309;\u030A"    // main accents
 + ";\u030B;\u030C;\u030D;\u030E"    // main accents
 + ";\u030F;\u0310;\u0311;\u0312"    // main accents
 + "< a , A ; ae, AE ; \u00e6 , \u00c6"
 + "< b , B < c, C < e, E & C < d, D";
 // change the order of accent characters
 String addOn = "& \u0300 ; \u0308 ; \u0302";
 RuleBasedCollator myCollator = new RuleBasedCollator(oldRules + addOn);
 

The last example shows how to put new primary ordering in before the default setting. For example, in Japanese 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 \u2212
 String jaString = "& \u2212 < \u3041, \u3042 < \u3043, \u3044";
 RuleBasedCollator myJapaneseCollator = new
 RuleBasedCollator(en_USCollator.getRules() + jaString);
 

See Also:   Collator
See Also:   CollationElementIterator
version:
   1.25 07/24/98
author:
   Helena Shih, Laura Werner, Richard Gillam


Field Summary
final static  intCHARINDEX
    
final static  intCONTRACTCHARINDEX
    
final static  intEXPANDCHARINDEX
    
final static  intUNMAPPED
    

Constructor Summary
public  RuleBasedCollator(String rules)
     RuleBasedCollator constructor.
 RuleBasedCollator(String rules, int decomp)
     RuleBasedCollator constructor.

Method Summary
public  Objectclone()
     Standard override; no change in semantics.
public synchronized  intcompare(String source, String target)
     Compares the character data stored in two different strings based on the collation rules.
public  booleanequals(Object obj)
     Compares the equality of two collation objects.
Parameters:
  obj - the table-based collation object to be compared with this.
public  CollationElementIteratorgetCollationElementIterator(String source)
     Return a CollationElementIterator for the given String.
public  CollationElementIteratorgetCollationElementIterator(CharacterIterator source)
     Return a CollationElementIterator for the given String.
public synchronized  CollationKeygetCollationKey(String source)
     Transforms the string into a series of characters that can be compared with CollationKey.compareTo.
public  StringgetRules()
     Gets the table-based rules for the collation object.
 RBCollationTablesgetTables()
    
public  inthashCode()
    

Field Detail
CHARINDEX
final static int CHARINDEX(Code)



CONTRACTCHARINDEX
final static int CONTRACTCHARINDEX(Code)



EXPANDCHARINDEX
final static int EXPANDCHARINDEX(Code)



UNMAPPED
final static int UNMAPPED(Code)




Constructor Detail
RuleBasedCollator
public RuleBasedCollator(String rules) throws ParseException(Code)
RuleBasedCollator constructor. This takes the table rules and builds a collation table out of them. Please see RuleBasedCollator class description for more details on the collation rule syntax.
See Also:   java.util.Locale
Parameters:
  rules - the collation rules to build the collation table from.
exception:
  ParseException - A format exceptionwill be thrown if the build process of the rules fails. Forexample, build rule "a < ? < d" will cause the constructor tothrow the ParseException because the '?' is not quoted.



RuleBasedCollator
RuleBasedCollator(String rules, int decomp) throws ParseException(Code)
RuleBasedCollator constructor. This takes the table rules and builds a collation table out of them. Please see RuleBasedCollator class description for more details on the collation rule syntax.
See Also:   java.util.Locale
Parameters:
  rules - the collation rules to build the collation table from.
Parameters:
  decomp - the decomposition strength used to build thecollation table and to perform comparisons.
exception:
  ParseException - A format exceptionwill be thrown if the build process of the rules fails. Forexample, build rule "a < ? < d" will cause the constructor tothrow the ParseException because the '?' is not quoted.




Method Detail
clone
public Object clone()(Code)
Standard override; no change in semantics.



compare
public synchronized int compare(String source, String target)(Code)
Compares the character data stored in two different strings based on the collation rules. Returns information about whether a string is less than, greater than or equal to another string in a language. This can be overriden in a subclass.



equals
public boolean equals(Object obj)(Code)
Compares the equality of two collation objects.
Parameters:
  obj - the table-based collation object to be compared with this. true if the current table-based collation object is the sameas the table-based collation object obj; false otherwise.



getCollationElementIterator
public CollationElementIterator getCollationElementIterator(String source)(Code)
Return a CollationElementIterator for the given String.
See Also:   java.text.CollationElementIterator



getCollationElementIterator
public CollationElementIterator getCollationElementIterator(CharacterIterator source)(Code)
Return a CollationElementIterator for the given String.
See Also:   java.text.CollationElementIterator
since:
   1.2



getCollationKey
public synchronized CollationKey getCollationKey(String source)(Code)
Transforms the string into a series of characters that can be compared with CollationKey.compareTo. This overrides java.text.Collator.getCollationKey. It can be overriden in a subclass.



getRules
public String getRules()(Code)
Gets the table-based rules for the collation object. returns the collation rules that the table collation objectwas created from.



getTables
RBCollationTables getTables()(Code)
Allows CollationElementIterator access to the tables object



hashCode
public int hashCode()(Code)
Generates the hash code for the table-based collation object



Fields inherited from java.text.Collator
final public static int CANONICAL_DECOMPOSITION(Code)(Java Doc)
final static int EQUAL(Code)(Java Doc)
final public static int FULL_DECOMPOSITION(Code)(Java Doc)
final static int GREATER(Code)(Java Doc)
final public static int IDENTICAL(Code)(Java Doc)
final static int LESS(Code)(Java Doc)
final public static int NO_DECOMPOSITION(Code)(Java Doc)
final public static int PRIMARY(Code)(Java Doc)
final public static int SECONDARY(Code)(Java Doc)
final public static int TERTIARY(Code)(Java Doc)

Methods inherited from java.text.Collator
public Object clone()(Code)(Java Doc)
abstract public int compare(String source, String target)(Code)(Java Doc)
public int compare(Object o1, Object o2)(Code)(Java Doc)
public boolean equals(String source, String target)(Code)(Java Doc)
public boolean equals(Object that)(Code)(Java Doc)
public static synchronized Locale[] getAvailableLocales()(Code)(Java Doc)
abstract public CollationKey getCollationKey(String source)(Code)(Java Doc)
public synchronized int getDecomposition()(Code)(Java Doc)
public static synchronized Collator getInstance()(Code)(Java Doc)
public static synchronized Collator getInstance(Locale desiredLocale)(Code)(Java Doc)
public synchronized int getStrength()(Code)(Java Doc)
abstract public int hashCode()(Code)(Java Doc)
public synchronized void setDecomposition(int decompositionMode)(Code)(Java Doc)
public synchronized void setStrength(int newStrength)(Code)(Java Doc)

Methods inherited from java.lang.Object
public boolean equals(Object obj)(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.