
public enum FanState extends Enum<FanState>
| Modifier and Type | Method and Description |
|---|---|
static FanState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FanState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FanState OFFLINE
public static final FanState OFF
public static final FanState SPEED
public static final FanState TEMP
public static FanState[] values()
for (FanState c : FanState.values()) System.out.println(c);
public static FanState 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 © 2022 LSST. All rights reserved.