|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PhysicalMachine.State>
hu.mta.sztaki.lpds.cloud.simulator.iaas.PhysicalMachine.State
public static enum PhysicalMachine.State
Represents the possible states of the physical machines modeled in the system
Enum Constant Summary | |
---|---|
OFF
The machine is completely switched off, minimal consumption is recorded. |
|
RUNNING
The machine is currently serving VMs. |
|
SWITCHINGOFF
The machine is about to be switched off. |
|
SWITCHINGON
The machine is under preparation to serve VMs. |
Method Summary | |
---|---|
static PhysicalMachine.State |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static PhysicalMachine.State[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final PhysicalMachine.State OFF
public static final PhysicalMachine.State SWITCHINGON
public static final PhysicalMachine.State RUNNING
public static final PhysicalMachine.State SWITCHINGOFF
Method Detail |
---|
public static PhysicalMachine.State[] values()
for (PhysicalMachine.State c : PhysicalMachine.State.values()) System.out.println(c);
public static PhysicalMachine.State valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |