Package org.qubitpi.wilhelm
Enum Class Language
- All Implemented Interfaces:
Serializable
,Comparable<Language>
,Constable
A natural language represented in webservice that bridges the client request data format to database request format.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescription@NotNull String
@NotNull String
static @NotNull Language
ofClientValue
(@NotNull String language) Constructs aLanguage
from itsclient-side name
.static @NotNull Language
ofDatabaseName
(@NotNull String language) Constructs aLanguage
from itsdatabase name
.toString()
static Language
Returns the enum constant of this class with the specified name.static Language[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
GERMAN
German language. -
ANCIENT_GREEK
Ancient Greek. -
LATIN
Latin.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
ofDatabaseName
Constructs aLanguage
from itsdatabase name
.- Parameters:
language
- The client-side requested language name- Returns:
- a new instance
- Throws:
IllegalArgumentException
- if the language name is not a valid one
-
ofClientValue
@NotNull public static @NotNull Language ofClientValue(@NotNull @NotNull String language) throws IllegalArgumentException Constructs aLanguage
from itsclient-side name
.- Parameters:
language
- The client-side requested language name- Returns:
- a new instance
- Throws:
IllegalArgumentException
- if the language name is not a valid one
-
getPathName
-
getDatabaseName
-
toString
-