Package de.sfuhrm.radiorecorder.http
Enum HttpConnectionBuilderFactory.HttpClientType
- java.lang.Object
-
- java.lang.Enum<HttpConnectionBuilderFactory.HttpClientType>
-
- de.sfuhrm.radiorecorder.http.HttpConnectionBuilderFactory.HttpClientType
-
- All Implemented Interfaces:
Serializable,Comparable<HttpConnectionBuilderFactory.HttpClientType>
- Enclosing class:
- HttpConnectionBuilderFactory
public static enum HttpConnectionBuilderFactory.HttpClientType extends Enum<HttpConnectionBuilderFactory.HttpClientType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APACHE_CLIENT_4APACHE_CLIENT_5JAVA_NET
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HttpConnectionBuilderFactory.HttpClientTypevalueOf(String name)Returns the enum constant of this type with the specified name.static HttpConnectionBuilderFactory.HttpClientType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JAVA_NET
public static final HttpConnectionBuilderFactory.HttpClientType JAVA_NET
-
APACHE_CLIENT_4
public static final HttpConnectionBuilderFactory.HttpClientType APACHE_CLIENT_4
-
APACHE_CLIENT_5
public static final HttpConnectionBuilderFactory.HttpClientType APACHE_CLIENT_5
-
-
Method Detail
-
values
public static HttpConnectionBuilderFactory.HttpClientType[] 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 (HttpConnectionBuilderFactory.HttpClientType c : HttpConnectionBuilderFactory.HttpClientType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HttpConnectionBuilderFactory.HttpClientType 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 nameNullPointerException- if the argument is null
-
-