public enum AnalyzeMode extends java.lang.Enum<AnalyzeMode>
| Enum Constant and Description |
|---|
ALL_LAUNCHES |
BY_LAUNCH_NAME |
CURRENT_LAUNCH |
| Modifier and Type | Method and Description |
|---|---|
static AnalyzeMode |
fromString(java.lang.String mode) |
java.lang.String |
getValue() |
static AnalyzeMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AnalyzeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnalyzeMode ALL_LAUNCHES
public static final AnalyzeMode BY_LAUNCH_NAME
public static final AnalyzeMode CURRENT_LAUNCH
public static AnalyzeMode[] values()
for (AnalyzeMode c : AnalyzeMode.values()) System.out.println(c);
public static AnalyzeMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static AnalyzeMode fromString(java.lang.String mode)
public java.lang.String getValue()