Enum Host.Type

    • Enum Constant Detail

      • STORAGE

        public static final Host.Type STORAGE
      • ROUTING

        public static final Host.Type ROUTING
      • SECONDARY_STORAGE

        public static final Host.Type SECONDARY_STORAGE
      • SECONDARY_STORAGE_CMD_EXECUTOR

        public static final Host.Type SECONDARY_STORAGE_CMD_EXECUTOR
      • CONSOLE_PROXY

        public static final Host.Type CONSOLE_PROXY
      • EXTERNAL_FIREWALL

        public static final Host.Type EXTERNAL_FIREWALL
      • EXTERNAL_LOAD_BALANCER

        public static final Host.Type EXTERNAL_LOAD_BALANCER
      • PXE_SERVER

        public static final Host.Type PXE_SERVER
      • TRAFFIC_MONITOR

        public static final Host.Type TRAFFIC_MONITOR
      • EXTERNAL_DHCP

        public static final Host.Type EXTERNAL_DHCP
      • SECONDARY_STORAGE_VM

        public static final Host.Type SECONDARY_STORAGE_VM
      • LOCAL_SECONDARY_STORAGE

        public static final Host.Type LOCAL_SECONDARY_STORAGE
      • UNKNOWN

        public static final Host.Type UNKNOWN
    • Method Detail

      • values

        public static Host.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 (Host.Type c : Host.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 Host.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