Package com.redis.lettucemod.search
Enum Language
- java.lang.Object
-
- java.lang.Enum<Language>
-
- com.redis.lettucemod.search.Language
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetId()static LanguagevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Language[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ARABIC
public static final Language ARABIC
-
CHINESE
public static final Language CHINESE
-
DANISH
public static final Language DANISH
-
DUTCH
public static final Language DUTCH
-
ENGLISH
public static final Language ENGLISH
-
FINNISH
public static final Language FINNISH
-
FRENCH
public static final Language FRENCH
-
GERMAN
public static final Language GERMAN
-
HUNGARIAN
public static final Language HUNGARIAN
-
ITALIAN
public static final Language ITALIAN
-
NORWEGIAN
public static final Language NORWEGIAN
-
PORTUGUESE
public static final Language PORTUGUESE
-
ROMANIAN
public static final Language ROMANIAN
-
RUSSIAN
public static final Language RUSSIAN
-
SPANISH
public static final Language SPANISH
-
SWEDISH
public static final Language SWEDISH
-
TAMIL
public static final Language TAMIL
-
TURKISH
public static final Language TURKISH
-
-
Method Detail
-
values
public static Language[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Language c : Language.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Language valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getId
public java.lang.String getId()
-
-