public enum AirConditionClass extends Enum<AirConditionClass>
| Modifier and Type | Method and Description |
|---|---|
static AirConditionClass |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AirConditionClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AirConditionClass A
public static final AirConditionClass B
public static final AirConditionClass C
public static final AirConditionClass D
public static final AirConditionClass E
public static final AirConditionClass F
public static final AirConditionClass G
public static AirConditionClass[] values()
for (AirConditionClass c : AirConditionClass.values()) System.out.println(c);
public static AirConditionClass 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 nullCopyright © 2017 Power TAC. All rights reserved.