| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.util.spi.LocaleServiceProvider
java.text.spi.DateFormatProvider
public abstract class DateFormatProvider
An abstract class for service providers that
 provide concrete implementations of the 
 DateFormat class.
| Constructor Summary | |
|---|---|
| protected  | DateFormatProvider()Sole constructor. | 
| Method Summary | |
|---|---|
| abstract  DateFormat | getDateInstance(int style,
                Locale locale)Returns a new DateFormatinstance which formats date
 with the given formatting style for the specified locale. | 
| abstract  DateFormat | getDateTimeInstance(int dateStyle,
                    int timeStyle,
                    Locale locale)Returns a new DateFormatinstance which formats date and time
 with the given formatting style for the specified locale. | 
| abstract  DateFormat | getTimeInstance(int style,
                Locale locale)Returns a new DateFormatinstance which formats time 
 with the given formatting style for the specified locale. | 
| Methods inherited from class java.util.spi.LocaleServiceProvider | 
|---|
| getAvailableLocales | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Constructor Detail | 
|---|
protected DateFormatProvider()
| Method Detail | 
|---|
public abstract DateFormat getTimeInstance(int style,
                                           Locale locale)
DateFormat instance which formats time 
 with the given formatting style for the specified locale.
style - the given formatting style.  Either one of
     DateFormat.SHORT, 
     DateFormat.MEDIUM, 
     DateFormat.LONG, or
     DateFormat.FULL.locale - the desired locale.
IllegalArgumentException - if style is invalid,
     or if locale isn't
     one of the locales returned from 
     getAvailableLocales().
NullPointerException - if locale is nullDateFormat.getTimeInstance(int, java.util.Locale)
public abstract DateFormat getDateInstance(int style,
                                           Locale locale)
DateFormat instance which formats date
 with the given formatting style for the specified locale.
style - the given formatting style.  Either one of
     DateFormat.SHORT, 
     DateFormat.MEDIUM, 
     DateFormat.LONG, or
     DateFormat.FULL.locale - the desired locale.
IllegalArgumentException - if style is invalid,
     or if locale isn't
     one of the locales returned from 
     getAvailableLocales().
NullPointerException - if locale is nullDateFormat.getDateInstance(int, java.util.Locale)
public abstract DateFormat getDateTimeInstance(int dateStyle,
                                               int timeStyle,
                                               Locale locale)
DateFormat instance which formats date and time
 with the given formatting style for the specified locale.
dateStyle - the given date formatting style.  Either one of
     DateFormat.SHORT, 
     DateFormat.MEDIUM, 
     DateFormat.LONG, or
     DateFormat.FULL.timeStyle - the given time formatting style.  Either one of
     DateFormat.SHORT, 
     DateFormat.MEDIUM, 
     DateFormat.LONG, or
     DateFormat.FULL.locale - the desired locale.
IllegalArgumentException - if dateStyle or
     timeStyle is invalid,
     or if locale isn't
     one of the locales returned from 
     getAvailableLocales().
NullPointerException - if locale is nullDateFormat.getDateTimeInstance(int, int, java.util.Locale)| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Copyright 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.