public enum GoTalkLanguage extends Enum<GoTalkLanguage> implements HasName
| Enum Constant and Description |
|---|
ENGLISH |
FRENCH |
GERMAN |
ITALIAN |
SPANISH |
UNKNOWN
Fallback when enumeration value is unknown.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
String |
getName() |
static GoTalkLanguage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GoTalkLanguage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GoTalkLanguage UNKNOWN
public static final GoTalkLanguage ENGLISH
public static final GoTalkLanguage FRENCH
public static final GoTalkLanguage SPANISH
public static final GoTalkLanguage GERMAN
public static final GoTalkLanguage ITALIAN
public static GoTalkLanguage[] values()
for (GoTalkLanguage c : GoTalkLanguage.values()) System.out.println(c);
public static GoTalkLanguage valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int getCode()
Copyright © 2023. All rights reserved.