Enum DslHttpSampler.HttpClientImpl

    • Enum Constant Detail

      • HTTP_CLIENT

        public static final DslHttpSampler.HttpClientImpl HTTP_CLIENT
        Specifies to use the Apache HttpClient implementation. This is the default one and usually the preferred one.
    • Field Detail

      • propertyValue

        public final String propertyValue
    • Method Detail

      • values

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

        public static DslHttpSampler.HttpClientImpl 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