public static enum Command.CHARACTER_SET extends Enum<Command.CHARACTER_SET>
| Enum Constant and Description |
|---|
CHINA
中国
|
DENMARK_I
丹麦
|
DENMARK_II
丹麦 II
|
FRANCE
法国
|
GERMANY
德国
|
ITALY
意大利
|
JAPAN
日本
|
KOREAN
韩国
|
LATIN_AMERCIA
拉丁美洲
|
NORWAY
挪威
|
SLOVENIA
斯洛维尼亚/克罗帝亚
|
SPAIN_I
西班牙 I
|
SPAIN_II
西班牙 II
|
SWEDEN
瑞典 I
|
UK
英国
|
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()