Serializable, Comparable<ProcessingMode>public enum ProcessingMode extends Enum<ProcessingMode>
| Modifier and Type | Method | Description |
|---|---|---|
static ProcessingMode |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static ProcessingMode[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName("test")
public static final ProcessingMode TEST
@SerializedName("live")
public static final ProcessingMode LIVE
@SerializedName("live_test")
public static final ProcessingMode LIVE_TEST
public static ProcessingMode[] values()
for (ProcessingMode c : ProcessingMode.values()) System.out.println(c);
public static ProcessingMode 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 The Apache Software Foundation. All rights reserved.