com.rapiddweller.common.Locales Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rd-lib-common Show documentation
Show all versions of rd-lib-common Show documentation
'rapiddweller Common' is an open source Java library
forked from Databene Commons by Volker Bergmann.
It provides extensions to the Java core library by utility classes, abstract concepts
and concrete implementations.
/*
* Copyright (C) 2004-2015 Volker Bergmann ([email protected]).
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.rapiddweller.common;
import java.util.Locale;
/**
* Provides Java constants for common {@link Locale}s.
* Created: 26.03.2010 18:52:58
*
* @author Volker Bergmann
* @since 0.5.0
*/
public interface Locales {
/**
* The constant AFRIKAANS.
*/
Locale AFRIKAANS = new Locale("af");
/**
* The constant ALBANIAN.
*/
Locale ALBANIAN = new Locale("sq");
/**
* The constant ARABIC.
*/
Locale ARABIC = new Locale("ar");
/**
* The constant BELARUSIAN.
*/
Locale BELARUSIAN = new Locale("be");
/**
* The constant BOSNIAN.
*/
Locale BOSNIAN = new Locale("bs");
/**
* The constant BULGARIAN.
*/
Locale BULGARIAN = new Locale("bg");
/**
* The constant CATALAN.
*/
Locale CATALAN = new Locale("ca");
/**
* The constant CZECH.
*/
Locale CZECH = new Locale("cs");
/**
* The constant CHINESE.
*/
Locale CHINESE = Locale.CHINESE;
/**
* The constant DANISH.
*/
Locale DANISH = new Locale("da");
/**
* The constant GERMAN.
*/
Locale GERMAN = Locale.GERMAN;
/**
* The constant DUTCH.
*/
Locale DUTCH = new Locale("nl");
/**
* The constant GREEK.
*/
Locale GREEK = new Locale("el");
/**
* The constant ENGLISH.
*/
Locale ENGLISH = Locale.ENGLISH;
/**
* The constant ESTONIAN.
*/
Locale ESTONIAN = new Locale("et");
/**
* The constant FINISH.
*/
Locale FINISH = new Locale("fi");
/**
* The constant FRENCH.
*/
Locale FRENCH = Locale.FRENCH;
/**
* The constant HEBREW.
*/
Locale HEBREW = new Locale("he");
/**
* The constant HINDI.
*/
Locale HINDI = new Locale("hi");
/**
* The constant CROATIAN.
*/
Locale CROATIAN = new Locale("hr");
/**
* The constant HUNGARIAN.
*/
Locale HUNGARIAN = new Locale("hu");
/**
* The constant INDONESIAN.
*/
Locale INDONESIAN = new Locale("id");
/**
* The constant ITALIAN.
*/
Locale ITALIAN = Locale.ITALIAN; // it
/**
* The constant JAPANESE.
*/
Locale JAPANESE = Locale.JAPANESE; // ja
/**
* The constant KOREAN.
*/
Locale KOREAN = Locale.KOREAN; // ko
/**
* The constant LATVIAN.
*/
Locale LATVIAN = new Locale("lv");
/**
* The constant LITHUANIAN.
*/
Locale LITHUANIAN = new Locale("lt");
/**
* The constant NORWEGIAN.
*/
Locale NORWEGIAN = new Locale("no");
/**
* The constant POLISH.
*/
Locale POLISH = new Locale("pl");
/**
* The constant PORTUGUESE.
*/
Locale PORTUGUESE = new Locale("pt");
/**
* The constant ROMANIAN.
*/
Locale ROMANIAN = new Locale("ro");
/**
* The constant RUSSIAN.
*/
Locale RUSSIAN = new Locale("ru");
/**
* The constant SLOVENIAN.
*/
Locale SLOVENIAN = new Locale("sl");
/**
* The constant SPANISH.
*/
Locale SPANISH = new Locale("es");
/**
* The constant SWEDISH.
*/
Locale SWEDISH = new Locale("sv");
/**
* The constant THAI.
*/
Locale THAI = new Locale("th");
/**
* The constant TURKISH.
*/
Locale TURKISH = new Locale("tr");
/**
* The constant UKRAINIAN.
*/
Locale UKRAINIAN = new Locale("uk");
/**
* The constant VIETNAMESE.
*/
Locale VIETNAMESE = new Locale("vi");
}