public enum DefrostZone extends Enum<DefrostZone>
| Modifier and Type | Method and Description |
|---|---|
static DefrostZone |
valueForString(String value) |
static DefrostZone |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DefrostZone[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefrostZone FRONT
public static final DefrostZone REAR
public static final DefrostZone ALL
public static final DefrostZone NONE
public static DefrostZone[] values()
for (DefrostZone c : DefrostZone.values()) System.out.println(c);
public static DefrostZone 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 nullpublic static DefrostZone valueForString(String value)