public enum FontBackgroundColorEnum extends Enum<FontBackgroundColorEnum>
| 枚举常量和说明 |
|---|
DARKBLUE |
DARKGRAY |
DARKGREEN |
DARKORANGE |
DARKPINK |
DARKPURPLE |
DARKSLIGHTGRAY |
DARKYELLOW |
LIGHTBLUE |
LIGHTGRAY |
LIGHTGREEN |
LIGHTORANGE |
LIGHTPINK |
LIGHTPURPLE |
LIGHTYELLOW |
| 限定符和类型 | 方法和说明 |
|---|---|
Integer |
getValue() |
static FontBackgroundColorEnum |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static FontBackgroundColorEnum[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final FontBackgroundColorEnum LIGHTPINK
public static final FontBackgroundColorEnum LIGHTORANGE
public static final FontBackgroundColorEnum LIGHTYELLOW
public static final FontBackgroundColorEnum LIGHTGREEN
public static final FontBackgroundColorEnum LIGHTBLUE
public static final FontBackgroundColorEnum LIGHTPURPLE
public static final FontBackgroundColorEnum LIGHTGRAY
public static final FontBackgroundColorEnum DARKPINK
public static final FontBackgroundColorEnum DARKORANGE
public static final FontBackgroundColorEnum DARKYELLOW
public static final FontBackgroundColorEnum DARKGREEN
public static final FontBackgroundColorEnum DARKBLUE
public static final FontBackgroundColorEnum DARKPURPLE
public static final FontBackgroundColorEnum DARKGRAY
public static final FontBackgroundColorEnum DARKSLIGHTGRAY
public static FontBackgroundColorEnum[] values()
for (FontBackgroundColorEnum c : FontBackgroundColorEnum.values()) System.out.println(c);
public static FontBackgroundColorEnum valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public Integer getValue()
Copyright © 2025. All rights reserved.