public enum HintMode extends Enum<HintMode> implements IEnumWithValue
| Enum Constant and Description |
|---|
DONT_CARE
There is no preference for this behavior.
|
FASTEST
The most efficient behavior should be used.
|
NICEST
The most correct or the highest quality option should be used.
|
| Modifier and Type | Method and Description |
|---|---|
int |
value() |
static HintMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HintMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOffromValue, transformForClientpublic static final HintMode DONT_CARE
public static final HintMode FASTEST
public static final HintMode NICEST
public static HintMode[] values()
for (HintMode c : HintMode.values()) System.out.println(c);
public static HintMode 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 nullpublic int value()
value in interface IEnumWithValueCopyright © 2018 Regenstrief Center for Biomedical Informatics. All rights reserved.