Enum Capacity.Type

    • Enum Constant Detail

      • MEMORY_ALLOCATED_BYTES

        public static final Capacity.Type MEMORY_ALLOCATED_BYTES
      • CPU_ALLOCATED_MHZ

        public static final Capacity.Type CPU_ALLOCATED_MHZ
      • PRIMARY_STORAGE_USED_BYTES

        public static final Capacity.Type PRIMARY_STORAGE_USED_BYTES
      • PRIMARY_STORAGE_ALLOCATED_BYTES

        public static final Capacity.Type PRIMARY_STORAGE_ALLOCATED_BYTES
      • PUBLIC_IP_ADDRESSES

        public static final Capacity.Type PUBLIC_IP_ADDRESSES
      • PRIVATE_IP_ADDRESSES

        public static final Capacity.Type PRIVATE_IP_ADDRESSES
      • SECONDARY_STORAGE_USED_BYTES

        public static final Capacity.Type SECONDARY_STORAGE_USED_BYTES
      • DIRECT_ATTACHED_PUBLIC_IP_ADDRESSES

        public static final Capacity.Type DIRECT_ATTACHED_PUBLIC_IP_ADDRESSES
      • LOCAL_STORAGE_USED_BYTES

        public static final Capacity.Type LOCAL_STORAGE_USED_BYTES
    • Method Detail

      • values

        public static Capacity.Type[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (Capacity.Type c : Capacity.Type.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Capacity.Type valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
        NullPointerException - if the argument is null