public static enum Command.CHARACTER_SET extends Enum<Command.CHARACTER_SET>
Enum Constant and Description |
---|
CHINA
China
|
DENMARK_I
Denmark I
|
DENMARK_II
Denmark II
|
FRANCE
France
|
GERMANY
Germany
|
ITALY
Italy
|
JAPAN
Japan
|
KOREAN
Korean
|
LATIN_AMERCIA
Latin America
|
NORWAY
Norway
|
SLOVENIA
Slovenia/Croatia
|
SPAIN_I
Spain I
|
SPAIN_II
Spain II
|
SWEDEN
Sweden
|
UK
the United Kingdom
|
USA
USA
|
Modifier and Type | Method and Description |
---|---|
byte |
getValue() |
static Command.CHARACTER_SET |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Command.CHARACTER_SET[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Command.CHARACTER_SET USA
public static final Command.CHARACTER_SET FRANCE
public static final Command.CHARACTER_SET GERMANY
public static final Command.CHARACTER_SET UK
public static final Command.CHARACTER_SET DENMARK_I
public static final Command.CHARACTER_SET SWEDEN
public static final Command.CHARACTER_SET ITALY
public static final Command.CHARACTER_SET SPAIN_I
public static final Command.CHARACTER_SET JAPAN
public static final Command.CHARACTER_SET NORWAY
public static final Command.CHARACTER_SET DENMARK_II
public static final Command.CHARACTER_SET SPAIN_II
public static final Command.CHARACTER_SET LATIN_AMERCIA
public static final Command.CHARACTER_SET KOREAN
public static final Command.CHARACTER_SET SLOVENIA
public static final Command.CHARACTER_SET CHINA
public static Command.CHARACTER_SET[] values()
for (Command.CHARACTER_SET c : Command.CHARACTER_SET.values()) System.out.println(c);
public static Command.CHARACTER_SET 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 byte getValue()