Enum Class Pe.Status

java.lang.Object
java.lang.Enum<Pe.Status>
org.cloudbus.cloudsim.resources.Pe.Status
All Implemented Interfaces:
Serializable, Comparable<Pe.Status>, Constable
Enclosing interface:
Pe

public static enum Pe.Status extends Enum<Pe.Status>
Status of PEs.
  • Enum Constant Details

    • FREE

      public static final Pe.Status FREE
      Denotes PE is FREE for allocation.
    • BUSY

      public static final Pe.Status BUSY
      Denotes PE is allocated and hence busy processing some Cloudlet.
    • FAILED

      public static final Pe.Status FAILED
      Denotes PE is failed and hence it can't process any Cloudlet at this moment. This PE is failed because it belongs to a machine which is also failed.
  • Method Details

    • values

      public static Pe.Status[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Pe.Status valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null