com.stackify.api.common.http
public enum HttpTransmissionStatus extends Enum<HttpTransmissionStatus>
| Enum Constant and Description |
|---|
ERROR
Error
|
OK
OK
|
UNAUTHORIZED
Not authorized
|
| Modifier and Type | Method and Description |
|---|---|
static HttpTransmissionStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpTransmissionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpTransmissionStatus OK
public static final HttpTransmissionStatus UNAUTHORIZED
public static final HttpTransmissionStatus ERROR
public static HttpTransmissionStatus[] values()
for (HttpTransmissionStatus c : HttpTransmissionStatus.values()) System.out.println(c);
public static HttpTransmissionStatus 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 © 2014 Stackify, LLC. All Rights Reserved.