Enum RoundRobinDNSServerSet.AddressSelectionMode

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      FAILOVER
      The address selection mode that will cause addresses to be consistently attempted in the order they are retrieved from the name service.
      RANDOM
      The address selection mode that will cause the order of addresses to be randomized for each attempt.
      ROUND_ROBIN
      The address selection mode that will cause connection attempts to be made in a round-robin order.
    • Method Detail

      • values

        public static RoundRobinDNSServerSet.AddressSelectionMode[] 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 (RoundRobinDNSServerSet.AddressSelectionMode c : RoundRobinDNSServerSet.AddressSelectionMode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static RoundRobinDNSServerSet.AddressSelectionMode valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • forName

        public static RoundRobinDNSServerSet.AddressSelectionMode forName​(java.lang.String name)
        Retrieves the address selection mode with the specified name.
        Parameters:
        name - The name of the address selection mode to retrieve. It must not be null.
        Returns:
        The requested address selection mode, or null if no such change mode is defined.