public enum PhonePerformanceLevel extends java.lang.Enum<PhonePerformanceLevel>
| Enum Constant and Description |
|---|
Level_0
降序, 0代表高等级, 1代表中等级 ,2代表低等级
|
Level_1 |
Level_2 |
| Modifier and Type | Method and Description |
|---|---|
static PhonePerformanceLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PhonePerformanceLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PhonePerformanceLevel Level_0
public static final PhonePerformanceLevel Level_1
public static final PhonePerformanceLevel Level_2
public static PhonePerformanceLevel[] values()
for (PhonePerformanceLevel c : PhonePerformanceLevel.values()) System.out.println(c);
public static PhonePerformanceLevel valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null