public enum BootstrapStrategy extends java.lang.Enum<BootstrapStrategy>
| Modifier and Type | Class and Description |
|---|---|
static class |
BootstrapStrategy.Adapter |
| Enum Constant and Description |
|---|
ACCOUNT_EXACT |
ACCOUNT_FUZZY |
NONE |
USER_EXACT |
USER_FUZZY |
| Modifier and Type | Method and Description |
|---|---|
static BootstrapStrategy |
fromValue(java.lang.String value) |
java.lang.String |
getValue() |
java.lang.String |
toString() |
static BootstrapStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BootstrapStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BootstrapStrategy USER_EXACT
public static final BootstrapStrategy USER_FUZZY
public static final BootstrapStrategy ACCOUNT_EXACT
public static final BootstrapStrategy ACCOUNT_FUZZY
public static final BootstrapStrategy NONE
public static BootstrapStrategy[] values()
for (BootstrapStrategy c : BootstrapStrategy.values()) System.out.println(c);
public static BootstrapStrategy 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 java.lang.String getValue()
public java.lang.String toString()
toString in class java.lang.Enum<BootstrapStrategy>public static BootstrapStrategy fromValue(java.lang.String value)