Package de.xima.fc.mdl.enums
Enum ELanguage
- All Implemented Interfaces:
INamedUiElement
,Serializable
,Comparable<ELanguage>
Supported default languages for the formcycle backend.
- Author:
- XIMA MEDIA GmbH
-
Enum Constant Summary
Enum Constants -
Field Summary
Fields inherited from interface de.xima.fc.interfaces.INamedUiElement
ATTR_DISPLAY_NAME
-
Method Summary
Modifier and TypeMethodDescriptionstatic ELanguage[]
all()
Deprecated.static ELanguage
getByLocale
(Locale locale) Finds the bestELanguage
for the given locale.static Locale
getSupportedLocale
(Locale candidate) Gets the supported locale for the given locale candidate if possible.static ELanguage
Returns the enum constant of this type with the specified name.static ELanguage
valueOfOrNull
(String string) static ELanguage[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
DE
-
EN
-
NL
-
IT
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getDisplayName
- Specified by:
getDisplayName
in interfaceINamedUiElement
- Returns:
- Wert, der das entsprechende Objekt an Oberfläche repräsentiert (wird i.A. zur Laufzeit ermittelt).
-
getLocale
-
all
Deprecated.Usevalues()
.- Returns:
- A list of all enum members.
-
getByLocale
Finds the bestELanguage
for the given locale. If no exact match can be found, the language with the matching language code is returned, if any (e.g.EN
for the localeen_US
).- Parameters:
locale
- Locale to check.- Returns:
- The
ELanguage
that best matches the given locale, ornull
if no language matches at all.
-
valueOfOrNull
-
getSupportedLocale
Gets the supported locale for the given locale candidate if possible. Countries & variants of the locale are ignored. E.g. if a locale candidatede_DE
is given then the supported localede
will be returned.- Parameters:
candidate
- locale to determine the supported locale for.- Returns:
- the supported locale for the given candidate or
null
if none could be found.
-
values()
.