public class FastIntSequenceSearch
extends java.lang.Object
Currently only forward search is implemented, but basically both the search indexable
and the searched indexable can be reversed
before searching.
Although based on integers this may also be used for searches in byte or character sequences.
Constructor and Description |
---|
FastIntSequenceSearch(int... searchTerm)
Constructor.
|
FastIntSequenceSearch(IntIndexable searchTerm)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
IntIndexable |
findAllMatches(IntIndexable data,
boolean allowOverlaps) |
int |
findFirst(IntIndexable data)
Find the first appearance of the search term in the given data.
|
int |
findNext(IntIndexable data,
int pos)
Find the next appearance of the search term after the given position
in the given data.
|
int |
findNext(IntIndexable data,
int pos,
int end)
Find the next appearance of the search term after the given start position
and before the given end position in the given data.
|
IntIndexable |
getSearchTerm()
Get the search term.
|
public FastIntSequenceSearch(@NotNull IntIndexable searchTerm)
searchTerm
- term to search forpublic FastIntSequenceSearch(int... searchTerm)
searchTerm
- ints to search for@NotNull public IntIndexable getSearchTerm()
public int findFirst(@NotNull IntIndexable data)
data
- data to search through-1
if there was nothing foundpublic int findNext(@NotNull IntIndexable data, int pos)
data
- data to search throughpos
- position to start the search-1
if there was nothing found between the position and the end of datapublic int findNext(@NotNull IntIndexable data, int pos, int end)
data
- data to search throughpos
- position to start the searchend
- position to end the search, the whole search term has to fit before this position to be found-1
if there was nothing found between the position and the end of data@NotNull public IntIndexable findAllMatches(@NotNull IntIndexable data, boolean allowOverlaps)