public enum AutoApproveOption extends java.lang.Enum<AutoApproveOption> implements EnumConverter<AutoApproveOption>
Enum Constant and Description |
---|
ALL |
EXCEPT_AUTO_SUBSTITUTED |
NONE |
PERFECT_MATCH_ONLY |
Modifier and Type | Method and Description |
---|---|
static AutoApproveOption |
from(java.lang.String value) |
java.lang.String |
to(AutoApproveOption v) |
static AutoApproveOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AutoApproveOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoApproveOption NONE
public static final AutoApproveOption ALL
public static final AutoApproveOption EXCEPT_AUTO_SUBSTITUTED
public static final AutoApproveOption PERFECT_MATCH_ONLY
public static AutoApproveOption[] values()
for (AutoApproveOption c : AutoApproveOption.values()) System.out.println(c);
public static AutoApproveOption 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 AutoApproveOption from(java.lang.String value)
public java.lang.String to(AutoApproveOption v)
to
in interface EnumConverter<AutoApproveOption>