public enum AutoAnalyzeStrategy extends java.lang.Enum<AutoAnalyzeStrategy>
| Modifier and Type | Method and Description |
|---|---|
static AutoAnalyzeStrategy |
fromValue(java.lang.String value) |
static AutoAnalyzeStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AutoAnalyzeStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoAnalyzeStrategy SINGLE
public static final AutoAnalyzeStrategy HISTORY
public static AutoAnalyzeStrategy[] values()
for (AutoAnalyzeStrategy c : AutoAnalyzeStrategy.values()) System.out.println(c);
public static AutoAnalyzeStrategy 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 AutoAnalyzeStrategy fromValue(java.lang.String value)