public static enum ProfileOptions.Language extends Enum<ProfileOptions.Language>
| Modifier and Type | Method and Description | 
|---|---|
| String | toString() | 
| static ProfileOptions.Language | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ProfileOptions.Language[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ProfileOptions.Language ENGLISH
public static final ProfileOptions.Language SPANISH
public static ProfileOptions.Language[] values()
for (ProfileOptions.Language c : ProfileOptions.Language.values()) System.out.println(c);
public static ProfileOptions.Language 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 String toString()
toString in class Enum<ProfileOptions.Language>Copyright © 2015–2016. All rights reserved.