Enum SearchMode
Enumeration constants to define binary searching of lists
Inherited Members
Namespace:
Assembly: .dll
Syntax
public enum SearchMode extends Enum<SearchMode>
Fields
| Name | Description |
|---|---|
| Exact | Specifies exact search. If the index is not found, -1 is returned. |
| Nearest | Specifies the nearest index. This will round up or down if the search is in-between x-values |
| RoundDown | Rounds down to the nearest index. |
| RoundUp | Rounds up to the nearest index |
Methods
| Name | Description |
|---|---|
| getIntValue() | |
| valueOf(String name) | |
| values() |