Java Doc for DateFormat.java in  » 6.0-JDK-Core » text » java » text » Java Source Code / Java DocumentationJava Source Code and Java Documentation

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.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » text » java.text 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.text.Format
      java.text.DateFormat

All known Subclasses:   java.text.SimpleDateFormat,
DateFormat
abstract public class DateFormat extends Format (Code)
DateFormat is an abstract class for date/time formatting subclasses which formats and parses dates or time in a language-independent manner. The date/time formatting subclass, such as SimpleDateFormat, allows for formatting (i.e., date -> text), parsing (text -> date), and normalization. The date is represented as a Date object or as the milliseconds since January 1, 1970, 00:00:00 GMT.

DateFormat provides many class methods for obtaining default date/time formatters based on the default or a given locale and a number of formatting styles. The formatting styles include FULL, LONG, MEDIUM, and SHORT. More detail and examples of using these styles are provided in the method descriptions.

DateFormat helps you to format and parse dates for any locale. Your code can be completely independent of the locale conventions for months, days of the week, or even the calendar format: lunar vs. solar.

To format a date for the current Locale, use one of the static factory methods:

 myString = DateFormat.getDateInstance().format(myDate);
 

If you are formatting multiple dates, it is more efficient to get the format and use it multiple times so that the system doesn't have to fetch the information about the local language and country conventions multiple times.

 DateFormat df = DateFormat.getDateInstance();
 for (int i = 0; i < myDate.length; ++i) {
 output.println(df.format(myDate[i]) + "; ");
 }
 

To format a date for a different Locale, specify it in the call to getDateInstance().

 DateFormat df = DateFormat.getDateInstance(DateFormat.LONG, Locale.FRANCE);
 

You can use a DateFormat to parse also.

 myDate = df.parse(myString);
 

Use getDateInstance to get the normal date format for that country. There are other static factory methods available. Use getTimeInstance to get the time format for that country. Use getDateTimeInstance to get a date and time format. You can pass in different options to these factory methods to control the length of the result; from SHORT to MEDIUM to LONG to FULL. The exact result depends on the locale, but generally:

  • SHORT is completely numeric, such as 12.13.52 or 3:30pm
  • MEDIUM is longer, such as Jan 12, 1952
  • LONG is longer, such as January 12, 1952 or 3:30:32pm
  • FULL is pretty completely specified, such as Tuesday, April 12, 1952 AD or 3:30:42pm PST.

You can also set the time zone on the format if you wish. If you want even more control over the format or parsing, (or want to give your users more control), you can try casting the DateFormat you get from the factory methods to a SimpleDateFormat. This will work for the majority of countries; just remember to put it in a try block in case you encounter an unusual one.

You can also use forms of the parse and format methods with ParsePosition and FieldPosition to allow you to

  • progressively parse through pieces of a string.
  • align any particular field, or find out where it is for selection on the screen.

Synchronization

Date formats are 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:   Format
See Also:   NumberFormat
See Also:   SimpleDateFormat
See Also:   java.util.Calendar
See Also:   java.util.GregorianCalendar
See Also:   java.util.TimeZone
version:
   1.63 05/05/07
author:
   Mark Davis, Chen-Lieh Huang, Alan Liu


Inner Class :public static class Field extends Format.Field

Field Summary
final public static  intAM_PM_FIELD
     Useful constant for AM_PM field alignment.
final public static  intDATE_FIELD
     Useful constant for DATE field alignment.
final public static  intDAY_OF_WEEK_FIELD
     Useful constant for DAY_OF_WEEK field alignment.
final public static  intDAY_OF_WEEK_IN_MONTH_FIELD
     Useful constant for DAY_OF_WEEK_IN_MONTH field alignment.
final public static  intDAY_OF_YEAR_FIELD
     Useful constant for DAY_OF_YEAR field alignment.
final public static  intDEFAULT
     Constant for default style pattern.
final public static  intERA_FIELD
     Useful constant for ERA field alignment.
final public static  intFULL
     Constant for full style pattern.
final public static  intHOUR0_FIELD
     Useful constant for zero-based HOUR field alignment.
final public static  intHOUR1_FIELD
     Useful constant for one-based HOUR field alignment.
final public static  intHOUR_OF_DAY0_FIELD
     Useful constant for zero-based HOUR_OF_DAY field alignment.
final public static  intHOUR_OF_DAY1_FIELD
     Useful constant for one-based HOUR_OF_DAY field alignment.
final public static  intLONG
     Constant for long style pattern.
final public static  intMEDIUM
     Constant for medium style pattern.
final public static  intMILLISECOND_FIELD
     Useful constant for MILLISECOND field alignment.
final public static  intMINUTE_FIELD
     Useful constant for MINUTE field alignment.
final public static  intMONTH_FIELD
     Useful constant for MONTH field alignment.
final public static  intSECOND_FIELD
     Useful constant for SECOND field alignment.
final public static  intSHORT
     Constant for short style pattern.
final public static  intTIMEZONE_FIELD
     Useful constant for TIMEZONE field alignment.
final public static  intWEEK_OF_MONTH_FIELD
     Useful constant for WEEK_OF_MONTH field alignment.
final public static  intWEEK_OF_YEAR_FIELD
     Useful constant for WEEK_OF_YEAR field alignment.
final public static  intYEAR_FIELD
     Useful constant for YEAR field alignment.
protected  Calendarcalendar
     The calendar that DateFormat uses to produce the time field values needed to implement date and time formatting.
protected  NumberFormatnumberFormat
     The number formatter that DateFormat uses to format numbers in dates and times.

Constructor Summary
protected  DateFormat()
     Create a new date format.

Method Summary
public  Objectclone()
    
public  booleanequals(Object obj)
    
final public  StringBufferformat(Object obj, StringBuffer toAppendTo, FieldPosition fieldPosition)
     Overrides Format. Formats a time object into a time string.
abstract public  StringBufferformat(Date date, StringBuffer toAppendTo, FieldPosition fieldPosition)
     Formats a Date into a date/time string.
Parameters:
  date - a Date to be formatted into a date/time string.
Parameters:
  toAppendTo - the string buffer for the returning date/time string.
Parameters:
  fieldPosition - keeps track of the position of the fieldwithin the returned string.On input: an alignment field,if desired.
final public  Stringformat(Date date)
     Formats a Date into a date/time string.
Parameters:
  date - the time value to be formatted into a time string.
public static  Locale[]getAvailableLocales()
     Returns an array of all locales for which the get*Instance methods of this class can return localized instances. The returned array represents the union of locales supported by the Java runtime and by installed java.text.spi.DateFormatProvider DateFormatProvider implementations.
public  CalendargetCalendar()
     Gets the calendar associated with this date/time formatter.
final public static  DateFormatgetDateInstance()
     Gets the date formatter with the default formatting style for the default locale.
final public static  DateFormatgetDateInstance(int style)
     Gets the date formatter with the given formatting style for the default locale.
Parameters:
  style - the given formatting style.
final public static  DateFormatgetDateInstance(int style, Locale aLocale)
     Gets the date formatter with the given formatting style for the given locale.
Parameters:
  style - the given formatting style.
final public static  DateFormatgetDateTimeInstance()
     Gets the date/time formatter with the default formatting style for the default locale.
final public static  DateFormatgetDateTimeInstance(int dateStyle, int timeStyle)
     Gets the date/time formatter with the given date and time formatting styles for the default locale.
Parameters:
  dateStyle - the given date formatting style.
final public static  DateFormatgetDateTimeInstance(int dateStyle, int timeStyle, Locale aLocale)
     Gets the date/time formatter with the given formatting styles for the given locale.
Parameters:
  dateStyle - the given date formatting style.
Parameters:
  timeStyle - the given time formatting style.
Parameters:
  aLocale - the given locale.
final public static  DateFormatgetInstance()
     Get a default date/time formatter that uses the SHORT style for both the date and the time.
public  NumberFormatgetNumberFormat()
     Gets the number formatter which this date/time formatter uses to format and parse a time.
final public static  DateFormatgetTimeInstance()
     Gets the time formatter with the default formatting style for the default locale.
final public static  DateFormatgetTimeInstance(int style)
     Gets the time formatter with the given formatting style for the default locale.
Parameters:
  style - the given formatting style.
final public static  DateFormatgetTimeInstance(int style, Locale aLocale)
     Gets the time formatter with the given formatting style for the given locale.
Parameters:
  style - the given formatting style.
public  TimeZonegetTimeZone()
     Gets the time zone.
public  inthashCode()
    
public  booleanisLenient()
     Tell whether date/time parsing is to be lenient.
public  Dateparse(String source)
     Parses text from the beginning of the given string to produce a date. The method may not use the entire text of the given string.

See the DateFormat.parse(String,ParsePosition) method for more information on date parsing.
Parameters:
  source - A String whose beginning should be parsed.

abstract public  Dateparse(String source, ParsePosition pos)
     Parse a date/time string according to the given parse position.
public  ObjectparseObject(String source, ParsePosition pos)
     Parses text from a string to produce a Date.

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 date is returned.

public  voidsetCalendar(Calendar newCalendar)
     Set the calendar to be used by this date format.
public  voidsetLenient(boolean lenient)
     Specify whether or not date/time parsing is to be lenient.
public  voidsetNumberFormat(NumberFormat newNumberFormat)
     Allows you to set the number formatter.
public  voidsetTimeZone(TimeZone zone)
     Sets the time zone for the calendar of this DateFormat object.

Field Detail
AM_PM_FIELD
final public static int AM_PM_FIELD(Code)
Useful constant for AM_PM field alignment. Used in FieldPosition of date/time formatting.



DATE_FIELD
final public static int DATE_FIELD(Code)
Useful constant for DATE field alignment. Used in FieldPosition of date/time formatting.



DAY_OF_WEEK_FIELD
final public static int DAY_OF_WEEK_FIELD(Code)
Useful constant for DAY_OF_WEEK field alignment. Used in FieldPosition of date/time formatting.



DAY_OF_WEEK_IN_MONTH_FIELD
final public static int DAY_OF_WEEK_IN_MONTH_FIELD(Code)
Useful constant for DAY_OF_WEEK_IN_MONTH field alignment. Used in FieldPosition of date/time formatting.



DAY_OF_YEAR_FIELD
final public static int DAY_OF_YEAR_FIELD(Code)
Useful constant for DAY_OF_YEAR field alignment. Used in FieldPosition of date/time formatting.



DEFAULT
final public static int DEFAULT(Code)
Constant for default style pattern. Its value is MEDIUM.



ERA_FIELD
final public static int ERA_FIELD(Code)
Useful constant for ERA field alignment. Used in FieldPosition of date/time formatting.



FULL
final public static int FULL(Code)
Constant for full style pattern.



HOUR0_FIELD
final public static int HOUR0_FIELD(Code)
Useful constant for zero-based HOUR field alignment. Used in FieldPosition of date/time formatting. HOUR0_FIELD is used for the zero-based 12-hour clock. For example, 11:30 PM + 1 hour results in 00:30 AM.



HOUR1_FIELD
final public static int HOUR1_FIELD(Code)
Useful constant for one-based HOUR field alignment. Used in FieldPosition of date/time formatting. HOUR1_FIELD is used for the one-based 12-hour clock. For example, 11:30 PM + 1 hour results in 12:30 AM.



HOUR_OF_DAY0_FIELD
final public static int HOUR_OF_DAY0_FIELD(Code)
Useful constant for zero-based HOUR_OF_DAY field alignment. Used in FieldPosition of date/time formatting. HOUR_OF_DAY0_FIELD is used for the zero-based 24-hour clock. For example, 23:59 + 01:00 results in 00:59.



HOUR_OF_DAY1_FIELD
final public static int HOUR_OF_DAY1_FIELD(Code)
Useful constant for one-based HOUR_OF_DAY field alignment. Used in FieldPosition of date/time formatting. HOUR_OF_DAY1_FIELD is used for the one-based 24-hour clock. For example, 23:59 + 01:00 results in 24:59.



LONG
final public static int LONG(Code)
Constant for long style pattern.



MEDIUM
final public static int MEDIUM(Code)
Constant for medium style pattern.



MILLISECOND_FIELD
final public static int MILLISECOND_FIELD(Code)
Useful constant for MILLISECOND field alignment. Used in FieldPosition of date/time formatting.



MINUTE_FIELD
final public static int MINUTE_FIELD(Code)
Useful constant for MINUTE field alignment. Used in FieldPosition of date/time formatting.



MONTH_FIELD
final public static int MONTH_FIELD(Code)
Useful constant for MONTH field alignment. Used in FieldPosition of date/time formatting.



SECOND_FIELD
final public static int SECOND_FIELD(Code)
Useful constant for SECOND field alignment. Used in FieldPosition of date/time formatting.



SHORT
final public static int SHORT(Code)
Constant for short style pattern.



TIMEZONE_FIELD
final public static int TIMEZONE_FIELD(Code)
Useful constant for TIMEZONE field alignment. Used in FieldPosition of date/time formatting.



WEEK_OF_MONTH_FIELD
final public static int WEEK_OF_MONTH_FIELD(Code)
Useful constant for WEEK_OF_MONTH field alignment. Used in FieldPosition of date/time formatting.



WEEK_OF_YEAR_FIELD
final public static int WEEK_OF_YEAR_FIELD(Code)
Useful constant for WEEK_OF_YEAR field alignment. Used in FieldPosition of date/time formatting.



YEAR_FIELD
final public static int YEAR_FIELD(Code)
Useful constant for YEAR field alignment. Used in FieldPosition of date/time formatting.



calendar
protected Calendar calendar(Code)
The calendar that DateFormat uses to produce the time field values needed to implement date and time formatting. Subclasses should initialize this to a calendar appropriate for the locale associated with this DateFormat.



numberFormat
protected NumberFormat numberFormat(Code)
The number formatter that DateFormat uses to format numbers in dates and times. Subclasses should initialize this to a number format appropriate for the locale associated with this DateFormat.




Constructor Detail
DateFormat
protected DateFormat()(Code)
Create a new date format.




Method Detail
clone
public Object clone()(Code)
Overrides Cloneable



equals
public boolean equals(Object obj)(Code)
Overrides equals



format
final public StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition fieldPosition)(Code)
Overrides Format. Formats a time object into a time string. Examples of time objects are a time value expressed in milliseconds and a Date object.
Parameters:
  obj - must be a Number or a Date.
Parameters:
  toAppendTo - the string buffer for the returning time string. the string buffer passed in as toAppendTo, with formatted text appended.
Parameters:
  fieldPosition - keeps track of the position of the fieldwithin the returned string.On input: an alignment field,if desired. On output: the offsets of the alignment field. Forexample, given a time text "1996.07.10 AD at 15:08:56 PDT",if the given fieldPosition is DateFormat.YEAR_FIELD, thebegin index and end index of fieldPosition will be set to0 and 4, respectively.Notice that if the same time field appearsmore than once in a pattern, the fieldPosition will be set for the firstoccurrence of that time field. For instance, formatting a Date tothe time string "1 PM PDT (Pacific Daylight Time)" using the pattern"h a z (zzzz)" and the alignment field DateFormat.TIMEZONE_FIELD,the begin index and end index of fieldPosition will be set to5 and 8, respectively, for the first occurrence of the timezonepattern character 'z'.
See Also:   java.text.Format



format
abstract public StringBuffer format(Date date, StringBuffer toAppendTo, FieldPosition fieldPosition)(Code)
Formats a Date into a date/time string.
Parameters:
  date - a Date to be formatted into a date/time string.
Parameters:
  toAppendTo - the string buffer for the returning date/time string.
Parameters:
  fieldPosition - keeps track of the position of the fieldwithin the returned string.On input: an alignment field,if desired. On output: the offsets of the alignment field. Forexample, given a time text "1996.07.10 AD at 15:08:56 PDT",if the given fieldPosition is DateFormat.YEAR_FIELD, thebegin index and end index of fieldPosition will be set to0 and 4, respectively.Notice that if the same time field appearsmore than once in a pattern, the fieldPosition will be set for the firstoccurrence of that time field. For instance, formatting a Date tothe time string "1 PM PDT (Pacific Daylight Time)" using the pattern"h a z (zzzz)" and the alignment field DateFormat.TIMEZONE_FIELD,the begin index and end index of fieldPosition will be set to5 and 8, respectively, for the first occurrence of the timezonepattern character 'z'. the string buffer passed in as toAppendTo, with formatted text appended.



format
final public String format(Date date)(Code)
Formats a Date into a date/time string.
Parameters:
  date - the time value to be formatted into a time string. the formatted time string.



getAvailableLocales
public static Locale[] getAvailableLocales()(Code)
Returns an array of all locales for which the get*Instance methods of this class can return localized instances. The returned array represents the union of locales supported by the Java runtime and by installed java.text.spi.DateFormatProvider DateFormatProvider implementations. It must contain at least a Locale instance equal to java.util.Locale.US Locale.US . An array of locales for which localizedDateFormat instances are available.



getCalendar
public Calendar getCalendar()(Code)
Gets the calendar associated with this date/time formatter. the calendar associated with this date/time formatter.



getDateInstance
final public static DateFormat getDateInstance()(Code)
Gets the date formatter with the default formatting style for the default locale. a date formatter.



getDateInstance
final public static DateFormat getDateInstance(int style)(Code)
Gets the date formatter with the given formatting style for the default locale.
Parameters:
  style - the given formatting style. For example,SHORT for "M/d/yy" in the US locale. a date formatter.



getDateInstance
final public static DateFormat getDateInstance(int style, Locale aLocale)(Code)
Gets the date formatter with the given formatting style for the given locale.
Parameters:
  style - the given formatting style. For example,SHORT for "M/d/yy" in the US locale.
Parameters:
  aLocale - the given locale. a date formatter.



getDateTimeInstance
final public static DateFormat getDateTimeInstance()(Code)
Gets the date/time formatter with the default formatting style for the default locale. a date/time formatter.



getDateTimeInstance
final public static DateFormat getDateTimeInstance(int dateStyle, int timeStyle)(Code)
Gets the date/time formatter with the given date and time formatting styles for the default locale.
Parameters:
  dateStyle - the given date formatting style. For example,SHORT for "M/d/yy" in the US locale.
Parameters:
  timeStyle - the given time formatting style. For example,SHORT for "h:mm a" in the US locale. a date/time formatter.



getDateTimeInstance
final public static DateFormat getDateTimeInstance(int dateStyle, int timeStyle, Locale aLocale)(Code)
Gets the date/time formatter with the given formatting styles for the given locale.
Parameters:
  dateStyle - the given date formatting style.
Parameters:
  timeStyle - the given time formatting style.
Parameters:
  aLocale - the given locale. a date/time formatter.



getInstance
final public static DateFormat getInstance()(Code)
Get a default date/time formatter that uses the SHORT style for both the date and the time.



getNumberFormat
public NumberFormat getNumberFormat()(Code)
Gets the number formatter which this date/time formatter uses to format and parse a time. the number formatter which this date/time formatter uses.



getTimeInstance
final public static DateFormat getTimeInstance()(Code)
Gets the time formatter with the default formatting style for the default locale. a time formatter.



getTimeInstance
final public static DateFormat getTimeInstance(int style)(Code)
Gets the time formatter with the given formatting style for the default locale.
Parameters:
  style - the given formatting style. For example,SHORT for "h:mm a" in the US locale. a time formatter.



getTimeInstance
final public static DateFormat getTimeInstance(int style, Locale aLocale)(Code)
Gets the time formatter with the given formatting style for the given locale.
Parameters:
  style - the given formatting style. For example,SHORT for "h:mm a" in the US locale.
Parameters:
  aLocale - the given locale. a time formatter.



getTimeZone
public TimeZone getTimeZone()(Code)
Gets the time zone. the time zone associated with the calendar of DateFormat.



hashCode
public int hashCode()(Code)
Overrides hashCode



isLenient
public boolean isLenient()(Code)
Tell whether date/time parsing is to be lenient.



parse
public Date parse(String source) throws ParseException(Code)
Parses text from the beginning of the given string to produce a date. The method may not use the entire text of the given string.

See the DateFormat.parse(String,ParsePosition) method for more information on date parsing.
Parameters:
  source - A String whose beginning should be parsed. A Date parsed from the string.
exception:
  ParseException - if the beginning of the specified stringcannot be parsed.




parse
abstract public Date parse(String source, ParsePosition pos)(Code)
Parse a date/time string according to the given parse position. For example, a time text "07/10/96 4:5 PM, PDT" will be parsed into a Date that is equivalent to Date(837039928046).

By default, parsing is lenient: If the input is not in the form used by this object's format method but can still be parsed as a date, then the parse succeeds. Clients may insist on strict adherence to the format by calling setLenient(false).
See Also:   java.text.DateFormat.setLenient(boolean)
Parameters:
  source - The date/time string to be parsed
Parameters:
  pos - On input, the position at which to start parsing; onoutput, the position at which parsing terminated, or thestart position if the parse failed. A Date, or null if the input could not be parsed




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

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 date 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.

See the DateFormat.parse(String,ParsePosition) method for more information on date parsing.
Parameters:
  source - A String, part of which should be parsed.
Parameters:
  pos - A ParsePosition object with index and errorindex information as described above. A Date parsed from the string. In case oferror, returns null.
exception:
  NullPointerException - if pos is null.




setCalendar
public void setCalendar(Calendar newCalendar)(Code)
Set the calendar to be used by this date format. Initially, the default calendar for the specified or default locale is used.
Parameters:
  newCalendar - the new Calendar to be used by the date format



setLenient
public void setLenient(boolean lenient)(Code)
Specify whether or not date/time parsing is to be lenient. With lenient parsing, the parser may use heuristics to interpret inputs that do not precisely match this object's format. With strict parsing, inputs must match this object's format.
Parameters:
  lenient - when true, parsing is lenient
See Also:   java.util.Calendar.setLenient



setNumberFormat
public void setNumberFormat(NumberFormat newNumberFormat)(Code)
Allows you to set the number formatter.
Parameters:
  newNumberFormat - the given new NumberFormat.



setTimeZone
public void setTimeZone(TimeZone zone)(Code)
Sets the time zone for the calendar of this DateFormat object.
Parameters:
  zone - the given new time zone.



Methods inherited from java.text.Format
public Object clone()(Code)(Java Doc)
AttributedCharacterIterator createAttributedCharacterIterator(String s)(Code)(Java Doc)
AttributedCharacterIterator createAttributedCharacterIterator(AttributedCharacterIterator[] iterators)(Code)(Java Doc)
AttributedCharacterIterator createAttributedCharacterIterator(String string, AttributedCharacterIterator.Attribute key, Object value)(Code)(Java Doc)
AttributedCharacterIterator createAttributedCharacterIterator(AttributedCharacterIterator iterator, AttributedCharacterIterator.Attribute key, Object value)(Code)(Java Doc)
final public String format(Object obj)(Code)(Java Doc)
abstract public StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition pos)(Code)(Java Doc)
public AttributedCharacterIterator formatToCharacterIterator(Object obj)(Code)(Java Doc)
abstract public Object parseObject(String source, ParsePosition pos)(Code)(Java Doc)
public Object parseObject(String source) throws ParseException(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(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.