public enum Delivered extends Enum<Delivered>
| Modifier and Type | Method and Description |
|---|---|
static Delivered |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Delivered[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="queued") public static final Delivered QUEUED
@SerializedName(value="yes") public static final Delivered YES
@SerializedName(value="no") public static final Delivered NO
@SerializedName(value="unknown") public static final Delivered UNKNOWN
public static Delivered[] values()
for (Delivered c : Delivered.values()) System.out.println(c);
public static Delivered 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 © 2020. All rights reserved.