public enum SearchMode extends java.lang.Enum<SearchMode>
Enum Constant and Description |
---|
Exact
Specifies exact search.
|
Nearest
Specifies the nearest index.
|
RoundDown
Rounds down to the nearest index.
|
RoundUp
Rounds up to the nearest index
|
Modifier and Type | Method and Description |
---|---|
int |
getIntValue() |
static SearchMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SearchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchMode Exact
public static final SearchMode Nearest
public static final SearchMode RoundDown
public static final SearchMode RoundUp
public static SearchMode[] values()
for (SearchMode c : SearchMode.values()) System.out.println(c);
public static SearchMode 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 final int getIntValue()