- Prev Class
- Next Class
- Summary:
- Nested |
- Enum Constants |
- Field |
- Method
- Detail:
- Enum Constants |
- Field |
- Method
org.apache.nutch.protocol.http
Enum HttpResponse.Scheme
- java.lang.Object
- java.lang.Enum<HttpResponse.Scheme>
- org.apache.nutch.protocol.http.HttpResponse.Scheme
- All Implemented Interfaces:
- Serializable, Comparable<HttpResponse.Scheme>
- Enclosing class:
- HttpResponse
protected static enum HttpResponse.Scheme extends Enum<HttpResponse.Scheme>
Enum Constant Summary
Enum Constants Enum Constant and Description HTTP
HTTPS
Method Summary
Methods Modifier and Type Method and Description static HttpResponse.Scheme
valueOf(String name)
Returns the enum constant of this type with the specified name.
static HttpResponse.Scheme[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
Enum Constant Detail
-
HTTP
public static final HttpResponse.Scheme HTTP
-
HTTPS
public static final HttpResponse.Scheme HTTPS
Method Detail
-
values
public static HttpResponse.Scheme[] 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 (HttpResponse.Scheme c : HttpResponse.Scheme.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HttpResponse.Scheme 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:
- <code>name</code> - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- <code>IllegalArgumentException</code> - if this enum type has no constant with the specified name
- <code>NullPointerException</code> - if the argument is null
- Prev Class
- Next Class
- Summary:
- Nested |
- Enum Constants |
- Field |
- Method
- Detail:
- Enum Constants |
- Field |
- Method