java.text

Home
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
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Natural Language Processing
51.Net
52.Parser
53.PDF
54.Portal
55.Profiler
56.Project Management
57.Report
58.RSS RDF
59.Rule Engine
60.Science
61.Scripting
62.Search Engine
63.Security
64.Sevlet Container
65.Source Control
66.Swing Library
67.Template Engine
68.Test Coverage
69.Testing
70.UML
71.Web Crawler
72.Web Framework
73.Web Mail
74.Web Server
75.Web Services
76.Web Services apache cxf 2.2.6
77.Web Services AXIS2
78.Wiki Engine
79.Workflow Engines
80.XML
81.XML UI
Java Source Code / Java Documentation  » Apache Harmony Java SE » java package » java.text 
java.text
Java Source File NameTypeComment
Annotation.javaClass Wrapper for a text attribute value which represents an annotation.
AttributedCharacterIterator.javaInterface Extends the CharacterIterator interface, adding support for iterating over attributes and not only characters.
AttributedString.javaClass Holds a string with attributes describing the characters of this string.
Bidi.javaClass Provides the Unicode Bidirectional Algorithm.
BreakIterator.javaClass Locates boundaries in text.
CharacterIterator.javaInterface An interface for the bidirectional iteration over a group of characters.
ChoiceFormat.javaClass Returns a fixed string based on a numeric value.
CollationElementIterator.javaClass Created by a RuleBasedCollator to iterate through a string.
CollationKey.javaClass Represents a string under the rules of a specific Collator object. Comparing two CollationKey instances returns the relative order of the strings they represent.

Since the rule set of collators can differ, the sort orders of the same string under two different Collator instances might differ.

Collator.javaClass Performs locale-sensitive string comparison.
DateFormat.javaClass An abstract class for date/time formatting subclasses which formats and parses dates or time in a language-independent manner.
DateFormatSymbols.javaClass Encapsulates localizable date-time formatting data, such as the names of the months, the names of the days of the week, and the time zone data. DateFormat and SimpleDateFormat both use DateFormatSymbols to encapsulate this information.

Typically you shouldn't use DateFormatSymbols directly.

DecimalFormat.javaClass A concrete subclass of NumberFormat that formats decimal numbers.
DecimalFormatSymbols.javaClass Encapsulates the set of symbols (such as the decimal separator, the grouping separator, and so on) needed by DecimalFormat to format numbers. DecimalFormat internally creates an instance of DecimalFormatSymbols from its locale data.
FieldPosition.javaClass Identifies fields in formatted strings.
Format.javaClass The base class for all formats.

This is an abstract base class which specifies the protocol for classes which convert other objects or values, such as numeric values and dates, and their string representations.

MessageFormat.javaClass
NumberFormat.javaClass The abstract base class for all number formats.
ParseException.javaClass Thrown when the string being parsed is not in the correct form.
ParsePosition.javaClass Tracks the current position in a parsed string.
RuleBasedBreakIterator.javaClass
RuleBasedCollator.javaClass A concrete implementation class for Collation .

RuleBasedCollator has the following restrictions for efficiency (other subclasses may be used for more complex languages):

  1. If a French secondary ordering is specified it applies to the whole collator object.
  2. All non-mentioned Unicode characters are at the end of the collation order.
  3. If a character is not located in the RuleBasedCollator , the default Unicode Collation Algorithm (UCA) rulebased table is automatically searched as a backup.

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

 
  
  
 

The rule elements are defined 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]).
SimpleDateFormat.javaClass A concrete class for formatting and parsing dates in a locale-sensitive manner.
StringCharacterIterator.javaClass An implementation of CharacterIterator for strings.
ww__w___.__j__a_v__a__2_s._co_m_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.