public static enum Result.ResponseStatus extends Enum<Result.ResponseStatus>
| Modifier and Type | Method and Description |
|---|---|
static Result.ResponseStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Result.ResponseStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="ok") public static final Result.ResponseStatus OK
@SerializedName(value="error") public static final Result.ResponseStatus ERROR
public static Result.ResponseStatus[] values()
for (Result.ResponseStatus c : Result.ResponseStatus.values()) System.out.println(c);
public static Result.ResponseStatus 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 © 2017. All rights reserved.