All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.time4j.tz.ZoneModelProvider Maven / Gradle / Ivy

There is a newer version: 4.38
Show newest version
/*
 * -----------------------------------------------------------------------
 * Copyright © 2013-2016 Meno Hochschild, 
 * -----------------------------------------------------------------------
 * This file (ZoneModelProvider.java) is part of project Time4J.
 *
 * Time4J is free software: You can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published
 * by the Free Software Foundation, either version 2.1 of the License, or
 * (at your option) any later version.
 *
 * Time4J is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with Time4J. If not, see .
 * -----------------------------------------------------------------------
 */

package net.time4j.tz;

import java.util.Map;
import java.util.Set;


/**
 * 

SPI interface which encapsulates the timezone repository and * provides all necessary data and transitions for a given timezone id.

* *

Implementations are usually stateless and should normally not * try to manage a cache. Instead Time4J uses its own cache. The * fact that this interface is used per {@code java.util.ServiceLoader} * requires a concrete implementation to offer a public no-arg * constructor.

* * @author Meno Hochschild * @since 3.20/4.16 * @see java.util.ServiceLoader */ /*[deutsch] *

SPI-Interface, das eine Zeitzonendatenbank kapselt und passend zu * einer Zeitzonen-ID (hier als String statt als {@code TZID}) die * Zeitzonendaten liefert.

* *

Implementierungen sind in der Regel zustandslos und halten keinen * Cache. Letzterer sollte normalerweise der Klasse {@code Timezone} * vorbehalten sein. Weil dieses Interface mittels eines * {@code java.util.ServiceLoader} genutzt wird, muß eine * konkrete Implementierung einen öffentlichen Konstruktor ohne * Argumente definieren.

* * @author Meno Hochschild * @since 3.20/4.16 * @see java.util.ServiceLoader */ public interface ZoneModelProvider { //~ Methoden ---------------------------------------------------------- /** *

Gets all available and supported timezone identifiers.

* * @return unmodifiable set of timezone ids * @see java.util.TimeZone#getAvailableIDs() */ /*[deutsch] *

Liefert alle verfügbaren Zeitzonenkennungen.

* * @return unmodifiable set of timezone ids * @see java.util.TimeZone#getAvailableIDs() */ Set getAvailableIDs(); /** *

Gets an alias table whose keys represent alternative identifiers * mapped to other aliases or finally canonical timezone IDs..

* *

Example: "PST" => "America/Los_Angeles".

* * @return map from all timezone aliases to canoncial ids */ /*[deutsch] *

Liefert eine Alias-Tabelle, in der die Schlüssel alternative * Zonen-IDs darstellen und in der die zugeordneten Werte wieder * Aliasnamen oder letztlich kanonische Zonen-IDs sind.

* *

Beispiel: "PST" => "America/Los_Angeles".

* * @return map from all timezone aliases to canoncial ids */ Map getAliases(); /** *

Loads an offset transition history for given timezone id.

* *

The argument never contains the provider name as prefix. It is * instead the part after the "~"-char (if not absent).

* * @param zoneID timezone id (i.e. "Europe/London") * @return timezone history or {@code null} if there are no data * @throws IllegalArgumentException if given id is wrong * @throws IllegalStateException if timezone database is broken * @see #getAvailableIDs() * @see #getAliases() * @see java.util.TimeZone#getTimeZone(String) */ /*[deutsch] *

Lädt die Zeitzonendaten zur angegebenen Zonen-ID.

* *

Das erste Argument enthält nie den Provider-Namen als * Präfix. Stattdessen ist es der Teil nach dem Zeichen * "~" (falls vorhanden).

* * @param zoneID timezone id (i.e. "Europe/London") * @return timezone history or {@code null} if there are no data * @throws IllegalArgumentException if given id is wrong * @throws IllegalStateException if timezone database is broken * @see #getAvailableIDs() * @see #getAliases() * @see java.util.TimeZone#getTimeZone(String) */ TransitionHistory load(String zoneID); /** *

Determines if in case of a failed search another {@code ZoneModelProvider} * should be called as alternative with possibly different rules.

* *

The special name "DEFAULT" can be used to denote the * default zone provider. Note that the fallback provider will only affect * the rules but not the id or display names of a new timezone.

* * @return name of alternative provider or empty if no fallback happens * @see #load(String) */ /*[deutsch] *

Legt fest, ob ein alternativer {@code ZoneModelProvider} mit eventuell * anderen Regeln gerufen werden soll, wenn die Suche nach einer Zeitzone * erfolglos war.

* *

Der spezielle Name "DEFAULT" kann verwendet werden, um * den Standard-{@code ZoneModelProvider} anzuzeigen. Zu beachten: Die * Alternative wird nur die Regeln betreffen, nicht aber die ID oder * Anzeigenamen einer neuen Zeitzone.

* * @return name of alternative provider or empty if no fallback happens * @see #load(String) */ String getFallback(); /** *

Gets the name of the underlying repository.

* *

The Olson/IANA-repository (and any provider which makes use of * these data (direct or indirect)) has the name "TZDB". * The names "java.util.TimeZone" and "DEFAULT" * are reserved and cannot be used.

* * @return String */ /*[deutsch] *

Gibt den Namen dieser Zeitzonendatenbank an.

* *

Die Olson/IANA-Zeitzonendatenbank hat den Namen * "TZDB". Jeder {@code ZoneModelProvider}, der sich auf diese * Daten bezieht, muß diesen Namen haben. Die Namen * "java.util.TimeZone" and "DEFAULT" sind * reserviert und können nicht verwendet werden.

* * @return String */ String getName(); /** *

Describes the location or source of the repository.

* * @return String which refers to an URI or empty if unknown */ /*[deutsch] *

Beschreibt die Quelle der Zeitzonendatenbank.

* * @return String which refers to an URI or empty if unknown */ String getLocation(); /** *

Queries the version of the underlying repository.

* *

In most cases the version has the Olson format starting with * a four-digit year number followed by a small letter in range * a-z.

* * @return String (for example "2011n") or empty if unknown */ /*[deutsch] *

Liefert die Version der Zeitzonendatenbank.

* *

Meist liegt die Version im Olson-Format vor. Dieses Format sieht * als Versionskennung eine 4-stellige Jahreszahl gefolgt von einem * Buchstaben im Bereich a-z vor.

* * @return String (for example "2011n") or empty if unknown */ String getVersion(); /** *

Queries if specific zone names are to be used.

* * @return specific name repository or {@code null} if not relevant */ /*[deutsch] *

Ermittelt, ob spezifische Zeitzonennamen zu verwenden sind.

* * @return specific name repository or {@code null} if not relevant */ default ZoneNameProvider getSpecificZoneNameRepository() { if (this instanceof ZoneNameProvider) { return ZoneNameProvider.class.cast(this); } return null; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy