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