public static enum FetcherResponse.Status extends Enum<FetcherResponse.Status>
| Enum Constant and Description |
|---|
INVALID_BLOCKED |
INVALID_CONNECTION |
INVALID_CONTENT |
INVALID_PROCESSING |
INVALID_STATUS_CODE |
INVALID_STOP_CODE |
VALID |
| Modifier and Type | Method and Description |
|---|---|
static FetcherResponse.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FetcherResponse.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FetcherResponse.Status VALID
public static final FetcherResponse.Status INVALID_STOP_CODE
public static final FetcherResponse.Status INVALID_STATUS_CODE
public static final FetcherResponse.Status INVALID_PROCESSING
public static final FetcherResponse.Status INVALID_CONTENT
public static final FetcherResponse.Status INVALID_BLOCKED
public static final FetcherResponse.Status INVALID_CONNECTION
public static FetcherResponse.Status[] values()
for (FetcherResponse.Status c : FetcherResponse.Status.values()) System.out.println(c);
public static FetcherResponse.Status 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 © 2018. All rights reserved.