Enum Class Types.AllocationAlgorithm

java.lang.Object
java.lang.Enum<Types.AllocationAlgorithm>
com.xensource.xenapi.Types.AllocationAlgorithm
All Implemented Interfaces:
Serializable, Comparable<Types.AllocationAlgorithm>, Constable
Enclosing class:
Types

public static enum Types.AllocationAlgorithm extends Enum<Types.AllocationAlgorithm>
  • Enum Constant Details

    • UNRECOGNIZED

      public static final Types.AllocationAlgorithm UNRECOGNIZED
      The value does not belong to this enumeration
    • BREADTH_FIRST

      public static final Types.AllocationAlgorithm BREADTH_FIRST
      vGPUs of a given type are allocated evenly across supporting pGPUs.
    • DEPTH_FIRST

      public static final Types.AllocationAlgorithm DEPTH_FIRST
      vGPUs of a given type are allocated on supporting pGPUs until they are full.
  • Method Details

    • values

      public static Types.AllocationAlgorithm[] 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 Types.AllocationAlgorithm 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
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Types.AllocationAlgorithm>