public enum BaseStyleModel extends java.lang.Enum<BaseStyleModel>
| 枚举常量和说明 |
|---|
ANDROID
android origin notification style
|
FLYME
flyme notification base style
|
PURE_PICTURE
picture base style
|
| 限定符和类型 | 方法和说明 |
|---|---|
int |
getCode() |
static BaseStyleModel |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static BaseStyleModel[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final BaseStyleModel FLYME
public static final BaseStyleModel PURE_PICTURE
public static final BaseStyleModel ANDROID
public static BaseStyleModel[] values()
for (BaseStyleModel c : BaseStyleModel.values()) System.out.println(c);
public static BaseStyleModel valueOf(java.lang.String name)
name - 要返回的枚举常量的名称。java.lang.IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException - 如果参数为空值public int getCode()