Package cz.jiripinkas.jsitemapgenerator
Enum Ping.HttpClientType
- java.lang.Object
-
- java.lang.Enum<Ping.HttpClientType>
-
- cz.jiripinkas.jsitemapgenerator.Ping.HttpClientType
-
- All Implemented Interfaces:
Serializable,Comparable<Ping.HttpClientType>
- Enclosing class:
- Ping
public static enum Ping.HttpClientType extends Enum<Ping.HttpClientType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APACHE_HTTP_CLIENTOK_HTTPREST_TEMPLATE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Ping.HttpClientTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Ping.HttpClientType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OK_HTTP
public static final Ping.HttpClientType OK_HTTP
-
APACHE_HTTP_CLIENT
public static final Ping.HttpClientType APACHE_HTTP_CLIENT
-
REST_TEMPLATE
public static final Ping.HttpClientType REST_TEMPLATE
-
-
Method Detail
-
values
public static Ping.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 (Ping.HttpClientType c : Ping.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 Ping.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
-
-