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