com.garmin.fit
Enum Language
java.lang.Object
java.lang.Enum<Language>
com.garmin.fit.Language
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Language>
public enum Language
- extends java.lang.Enum<Language>
Field Summary |
protected short |
value
|
Method Summary |
static Language |
getByValue(java.lang.Short value)
|
static java.lang.String |
getStringFromValue(Language value)
Retrieves the String Representation of the Value |
short |
getValue()
|
static Language |
valueOf(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. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
ENGLISH
public static final Language ENGLISH
FRENCH
public static final Language FRENCH
ITALIAN
public static final Language ITALIAN
GERMAN
public static final Language GERMAN
SPANISH
public static final Language SPANISH
CROATIAN
public static final Language CROATIAN
CZECH
public static final Language CZECH
DANISH
public static final Language DANISH
DUTCH
public static final Language DUTCH
FINNISH
public static final Language FINNISH
GREEK
public static final Language GREEK
HUNGARIAN
public static final Language HUNGARIAN
NORWEGIAN
public static final Language NORWEGIAN
POLISH
public static final Language POLISH
PORTUGUESE
public static final Language PORTUGUESE
SLOVAKIAN
public static final Language SLOVAKIAN
SLOVENIAN
public static final Language SLOVENIAN
SWEDISH
public static final Language SWEDISH
RUSSIAN
public static final Language RUSSIAN
TURKISH
public static final Language TURKISH
LATVIAN
public static final Language LATVIAN
UKRAINIAN
public static final Language UKRAINIAN
ARABIC
public static final Language ARABIC
FARSI
public static final Language FARSI
BULGARIAN
public static final Language BULGARIAN
ROMANIAN
public static final Language ROMANIAN
CHINESE
public static final Language CHINESE
JAPANESE
public static final Language JAPANESE
KOREAN
public static final Language KOREAN
TAIWANESE
public static final Language TAIWANESE
THAI
public static final Language THAI
HEBREW
public static final Language HEBREW
BRAZILIAN_PORTUGUESE
public static final Language BRAZILIAN_PORTUGUESE
INDONESIAN
public static final Language INDONESIAN
MALAYSIAN
public static final Language MALAYSIAN
VIETNAMESE
public static final Language VIETNAMESE
BURMESE
public static final Language BURMESE
MONGOLIAN
public static final Language MONGOLIAN
CUSTOM
public static final Language CUSTOM
INVALID
public static final Language INVALID
value
protected short value
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 name
java.lang.NullPointerException
- if the argument is null
getByValue
public static Language getByValue(java.lang.Short value)
getStringFromValue
public static java.lang.String getStringFromValue(Language value)
- Retrieves the String Representation of the Value
- Returns:
- The string representation of the value
getValue
public short getValue()