Java Doc for Format.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.Format

All known Subclasses:   java.text.MessageFormat,  java.text.CharacterIteratorFieldDelegate,  java.text.DateFormat,  java.text.NumberFormat,
Format
abstract public class Format implements Serializable,Cloneable(Code)
Format is an abstract base class for formatting locale-sensitive information such as dates, messages, and numbers.

Format defines the programming interface for formatting locale-sensitive objects into Strings (the format method) and for parsing Strings back into objects (the parseObject method).

Generally, a format's parseObject method must be able to parse any string formatted by its format method. However, there may be exceptional cases where this is not possible. For example, a format method might create two adjacent integer numbers with no separator in between, and in this case the parseObject could not tell which digits belong to which number.

Subclassing

The Java 2 platform provides three specialized subclasses of Format-- DateFormat, MessageFormat, and NumberFormat--for formatting dates, messages, and numbers, respectively.

Concrete subclasses must implement three methods:

  1. format(Object obj, StringBuffer toAppendTo, FieldPosition pos)
  2. formatToCharacterIterator(Object obj)
  3. parseObject(String source, ParsePosition pos)
These general methods allow polymorphic parsing and formatting of objects and are used, for example, by MessageFormat. Subclasses often also provide additional format methods for specific input types as well as parse methods for specific result types. Any parse method that does not take a ParsePosition argument should throw ParseException when no text in the required format is at the beginning of the input text.

Most subclasses will also implement the following factory methods:

  1. getInstance for getting a useful format object appropriate for the current locale
  2. getInstance(Locale) for getting a useful format object appropriate for the specified locale
In addition, some subclasses may also implement other getXxxxInstance methods for more specialized control. For example, the NumberFormat class provides getPercentInstance and getCurrencyInstance methods for getting specialized number formatters.

Subclasses of Format that allow programmers to create objects for locales (with getInstance(Locale) for example) must also implement the following class method:

 public static Locale[] getAvailableLocales()
 

And finally subclasses may define a set of constants to identify the various fields in the formatted output. These constants are used to create a FieldPosition object which identifies what information is contained in the field and its position in the formatted result. These constants should be named item_FIELD where item identifies the field. For examples of these constants, see ERA_FIELD and its friends in DateFormat .

Synchronization

Formats are generally not synchronized. It is recommended to create separate format instances for each thread. If multiple threads access a format concurrently, it must be synchronized externally.
See Also:   java.text.ParsePosition
See Also:   java.text.FieldPosition
See Also:   java.text.NumberFormat
See Also:   java.text.DateFormat
See Also:   java.text.MessageFormat
version:
   1.28, 01/19/00
author:
   Mark Davis


Inner Class :public static class Field extends AttributedCharacterIterator.Attribute
Inner Class :interface FieldDelegate



Method Summary
public  Objectclone()
     Creates and returns a copy of this object.
 AttributedCharacterIteratorcreateAttributedCharacterIterator(String s)
     Creates an AttributedCharacterIterator for the String s.
 AttributedCharacterIteratorcreateAttributedCharacterIterator(AttributedCharacterIterator[] iterators)
     Creates an AttributedCharacterIterator containg the concatenated contents of the passed in AttributedCharacterIterators.
 AttributedCharacterIteratorcreateAttributedCharacterIterator(String string, AttributedCharacterIterator.Attribute key, Object value)
     Returns an AttributedCharacterIterator with the String string and additional key/value pair key, value.
 AttributedCharacterIteratorcreateAttributedCharacterIterator(AttributedCharacterIterator iterator, AttributedCharacterIterator.Attribute key, Object value)
     Creates an AttributedCharacterIterator with the contents of iterator and the additional attribute key value.
final public  Stringformat(Object obj)
     Formats an object to produce a string.
abstract public  StringBufferformat(Object obj, StringBuffer toAppendTo, FieldPosition pos)
     Formats an object and appends the resulting text to a given string buffer.
public  AttributedCharacterIteratorformatToCharacterIterator(Object obj)
     Formats an Object producing an AttributedCharacterIterator. You can use the returned AttributedCharacterIterator to build the resulting String, as well as to determine information about the resulting String.

Each attribute key of the AttributedCharacterIterator will be of type Field.

abstract public  ObjectparseObject(String source, ParsePosition pos)
     Parses text from a string to produce an object.

The method attempts to parse text starting at the index given by pos. If parsing succeeds, then the index of pos is updated to the index after the last character used (parsing does not necessarily use all characters up to the end of the string), and the parsed object is returned.

public  ObjectparseObject(String source)
     Parses text from the beginning of the given string to produce an object. The method may not use the entire text of the given string.
Parameters:
  source - A String whose beginning should be parsed.



Method Detail
clone
public Object clone()(Code)
Creates and returns a copy of this object. a clone of this instance.



createAttributedCharacterIterator
AttributedCharacterIterator createAttributedCharacterIterator(String s)(Code)
Creates an AttributedCharacterIterator for the String s.
Parameters:
  s - String to create AttributedCharacterIterator from AttributedCharacterIterator wrapping s



createAttributedCharacterIterator
AttributedCharacterIterator createAttributedCharacterIterator(AttributedCharacterIterator[] iterators)(Code)
Creates an AttributedCharacterIterator containg the concatenated contents of the passed in AttributedCharacterIterators.
Parameters:
  iterators - AttributedCharacterIterators used to create resultingAttributedCharacterIterators AttributedCharacterIterator wrapping passed inAttributedCharacterIterators



createAttributedCharacterIterator
AttributedCharacterIterator createAttributedCharacterIterator(String string, AttributedCharacterIterator.Attribute key, Object value)(Code)
Returns an AttributedCharacterIterator with the String string and additional key/value pair key, value.
Parameters:
  string - String to create AttributedCharacterIterator from
Parameters:
  key - Key for AttributedCharacterIterator
Parameters:
  value - Value associated with key in AttributedCharacterIterator AttributedCharacterIterator wrapping args



createAttributedCharacterIterator
AttributedCharacterIterator createAttributedCharacterIterator(AttributedCharacterIterator iterator, AttributedCharacterIterator.Attribute key, Object value)(Code)
Creates an AttributedCharacterIterator with the contents of iterator and the additional attribute key value.
Parameters:
  iterator - Initial AttributedCharacterIterator to add arg to
Parameters:
  key - Key for AttributedCharacterIterator
Parameters:
  value - Value associated with key in AttributedCharacterIterator AttributedCharacterIterator wrapping args



format
final public String format(Object obj)(Code)
Formats an object to produce a string. This is equivalent to
Format.format(Object,StringBuffer,FieldPosition) format (obj, new StringBuffer(), new FieldPosition(0)).toString();

Parameters:
  obj - The object to format Formatted string.
exception:
  IllegalArgumentException - if the Format cannot format the givenobject



format
abstract public StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition pos)(Code)
Formats an object and appends the resulting text to a given string buffer. If the pos argument identifies a field used by the format, then its indices are set to the beginning and end of the first such field encountered.
Parameters:
  obj - The object to format
Parameters:
  toAppendTo - where the text is to be appended
Parameters:
  pos - A FieldPosition identifying a fieldin the formatted text the string buffer passed in as toAppendTo,with formatted text appended
exception:
  NullPointerException - if toAppendTo orpos is null
exception:
  IllegalArgumentException - if the Format cannot format the givenobject



formatToCharacterIterator
public AttributedCharacterIterator formatToCharacterIterator(Object obj)(Code)
Formats an Object producing an AttributedCharacterIterator. You can use the returned AttributedCharacterIterator to build the resulting String, as well as to determine information about the resulting String.

Each attribute key of the AttributedCharacterIterator will be of type Field. It is up to each Format implementation to define what the legal values are for each attribute in the AttributedCharacterIterator, but typically the attribute key is also used as the attribute value.

The default implementation creates an AttributedCharacterIterator with no attributes. Subclasses that support fields should override this and create an AttributedCharacterIterator with meaningful attributes.
exception:
  NullPointerException - if obj is null.
exception:
  IllegalArgumentException - when the Format cannot format thegiven object.
Parameters:
  obj - The object to format AttributedCharacterIterator describing the formatted value.
since:
   1.4




parseObject
abstract public Object parseObject(String source, ParsePosition pos)(Code)
Parses text from a string to produce an object.

The method attempts to parse text starting at the index given by pos. If parsing succeeds, then the index of pos is updated to the index after the last character used (parsing does not necessarily use all characters up to the end of the string), and the parsed object is returned. The updated pos can be used to indicate the starting point for the next call to this method. If an error occurs, then the index of pos is not changed, the error index of pos is set to the index of the character where the error occurred, and null is returned.
Parameters:
  source - A String, part of which should be parsed.
Parameters:
  pos - A ParsePosition object with index and errorindex information as described above. An Object parsed from the string. In case oferror, returns null.
exception:
  NullPointerException - if pos is null.




parseObject
public Object parseObject(String source) throws ParseException(Code)
Parses text from the beginning of the given string to produce an object. The method may not use the entire text of the given string.
Parameters:
  source - A String whose beginning should be parsed. An Object parsed from the string.
exception:
  ParseException - if the beginning of the specified stringcannot be parsed.



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.