枚举 CpclCommand.TEXT_FONT
- java.lang.Object
-
- java.lang.Enum<CpclCommand.TEXT_FONT>
-
- com.gainscha.sdk2.command.CpclCommand.TEXT_FONT
-
- 所有已实现的接口:
java.io.Serializable
,java.lang.Comparable<CpclCommand.TEXT_FONT>
- 封闭类:
- CpclCommand
public static enum CpclCommand.TEXT_FONT extends java.lang.Enum<CpclCommand.TEXT_FONT>
-
-
方法概要
所有方法 静态方法 实例方法 具体方法 修饰符和类型 方法 说明 java.lang.String
getValue()
static CpclCommand.TEXT_FONT
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。static CpclCommand.TEXT_FONT[]
values()
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
-
-
-
枚举常量详细资料
-
FONT_0
public static final CpclCommand.TEXT_FONT FONT_0
-
FONT_1
public static final CpclCommand.TEXT_FONT FONT_1
-
FONT_2
public static final CpclCommand.TEXT_FONT FONT_2
-
FONT_3
public static final CpclCommand.TEXT_FONT FONT_3
-
FONT_4
public static final CpclCommand.TEXT_FONT FONT_4
-
FONT_5
public static final CpclCommand.TEXT_FONT FONT_5
-
FONT_6
public static final CpclCommand.TEXT_FONT FONT_6
-
FONT_7
public static final CpclCommand.TEXT_FONT FONT_7
-
FONT_8
public static final CpclCommand.TEXT_FONT FONT_8
-
FONT_10
public static final CpclCommand.TEXT_FONT FONT_10
-
FONT_11
public static final CpclCommand.TEXT_FONT FONT_11
-
FONT_13
public static final CpclCommand.TEXT_FONT FONT_13
-
FONT_20
public static final CpclCommand.TEXT_FONT FONT_20
-
FONT_24
public static final CpclCommand.TEXT_FONT FONT_24
-
FONT_41
public static final CpclCommand.TEXT_FONT FONT_41
-
FONT_42
public static final CpclCommand.TEXT_FONT FONT_42
-
FONT_43
public static final CpclCommand.TEXT_FONT FONT_43
-
FONT_44
public static final CpclCommand.TEXT_FONT FONT_44
-
FONT_45
public static final CpclCommand.TEXT_FONT FONT_45
-
FONT_46
public static final CpclCommand.TEXT_FONT FONT_46
-
FONT_47
public static final CpclCommand.TEXT_FONT FONT_47
-
FONT_48
public static final CpclCommand.TEXT_FONT FONT_48
-
FONT_49
public static final CpclCommand.TEXT_FONT FONT_49
-
FONT_55
public static final CpclCommand.TEXT_FONT FONT_55
-
-
方法详细资料
-
values
public static CpclCommand.TEXT_FONT[] values()
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。该方法可用于迭代 常量, 如下所示:for (CpclCommand.TEXT_FONT c : CpclCommand.TEXT_FONT.values()) System.out.println(c);
- 返回:
- 按照声明该枚举类型的常量的顺序返回的包含这些常量的数组
-
valueOf
public static CpclCommand.TEXT_FONT valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。 字符串必须与用于声明该类型的枚举常量的 标识符完全匹配。(不允许有多余 的空格字符。)- 参数:
name
- 要返回的枚举常量的名称。- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
java.lang.IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException
- 如果参数为空值
-
getValue
public java.lang.String getValue()
-
-