- java.lang.Object
-
- java.util.spi.LocaleServiceProvider
-
- java.util.spi.TimeZoneNameProvider
-
public abstract class TimeZoneNameProvider extends LocaleServiceProvider
An abstract class for service providers that provide localized time zone names for theTimeZone
class. The localized time zone names available from the implementations of this class are also the source for theDateFormatSymbols.getZoneStrings()
method.- Since:
- 1.6
-
-
Constructor Summary
Constructors Modifier Constructor and Description protected
TimeZoneNameProvider()
Sole constructor.
-
Method Summary
Methods Modifier and Type Method and Description abstract String
getDisplayName(String ID, boolean daylight, int style, Locale locale)
Returns a name for the given time zone ID that's suitable for presentation to the user in the specified locale.-
Methods inherited from class java.util.spi.LocaleServiceProvider
getAvailableLocales
-
-
-
-
Constructor Detail
-
TimeZoneNameProvider
protected TimeZoneNameProvider()
Sole constructor. (For invocation by subclass constructors, typically implicit.)
-
-
Method Detail
-
getDisplayName
public abstract String getDisplayName(String ID, boolean daylight, int style, Locale locale)
Returns a name for the given time zone ID that's suitable for presentation to the user in the specified locale. The given time zone ID is "GMT" or one of the names defined using "Zone" entries in the "tz database", a public domain time zone database at ftp://elsie.nci.nih.gov/pub/. The data of this database is contained in a file whose name starts with "tzdata", and the specification of the data format is part of the zic.8 man page, which is contained in a file whose name starts with "tzcode".If
daylight
is true, the method should return a name appropriate for daylight saving time even if the specified time zone has not observed daylight saving time in the past.- Parameters:
ID
- a time zone ID stringdaylight
- if true, return the daylight saving name.style
- eitherTimeZone.LONG
orTimeZone.SHORT
locale
- the desired locale- Returns:
- the human-readable name of the given time zone in the given locale, or null if it's not available.
- Throws:
IllegalArgumentException
- ifstyle
is invalid, orlocale
isn't one of the locales returned fromgetAvailableLocales()
.NullPointerException
- ifID
orlocale
is null- See Also:
TimeZone.getDisplayName(boolean, int, java.util.Locale)
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
22/12/2024 15:17:44 Cette version de la page est en cache (à la date du 22/12/2024 15:17:44) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 11/06/2005, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/util/spi/TimeZoneNameProvider.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.