Enum ProxyChainType

    • Enum Constant Detail

      • LEGACY

        public static final ProxyChainType LEGACY
        A chain contains only legacy Globus 2 proxies.
      • DRAFT_RFC

        public static final ProxyChainType DRAFT_RFC
        A chain contains only draft RFC proxies.
      • RFC3820

        public static final ProxyChainType RFC3820
        A chain contains only RFC 3820 conformant proxies.
      • MIXED

        public static final ProxyChainType MIXED
        A chain contains proxies of different types (legacy, draft RFC or RFC).
    • Method Detail

      • values

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

        public static ProxyChainType 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