protected static enum HTTPSender.HTTPStatusCodeFamily extends Enum<HTTPSender.HTTPStatusCodeFamily>
| Enum Constant and Description |
|---|
CLIENT_ERROR |
INFORMATIONAL |
OTHER |
REDIRECTION |
SERVER_ERROR |
SUCCESSFUL |
| Modifier and Type | Method and Description |
|---|---|
static HTTPSender.HTTPStatusCodeFamily |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HTTPSender.HTTPStatusCodeFamily[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HTTPSender.HTTPStatusCodeFamily INFORMATIONAL
public static final HTTPSender.HTTPStatusCodeFamily SUCCESSFUL
public static final HTTPSender.HTTPStatusCodeFamily REDIRECTION
public static final HTTPSender.HTTPStatusCodeFamily CLIENT_ERROR
public static final HTTPSender.HTTPStatusCodeFamily SERVER_ERROR
public static final HTTPSender.HTTPStatusCodeFamily OTHER
public static HTTPSender.HTTPStatusCodeFamily[] values()
for (HTTPSender.HTTPStatusCodeFamily c : HTTPSender.HTTPStatusCodeFamily.values()) System.out.println(c);
public static HTTPSender.HTTPStatusCodeFamily valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © The Apache Software Foundation. All Rights Reserved.