Interface CharArrayMatcher
-
- All Known Subinterfaces:
LabelledCharArrayMatcher
public interface CharArrayMatcher
Matches a character array
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static CharArrayMatcher
fromTerms(java.util.List<BytesRef> terms)
boolean
match(char[] s, int offset, int length)
Returntrue
if the passed-in character array matchesdefault boolean
match(CharsRef chars)
Returntrue
if the passed-in CharsRef matches
-
-
-
Method Detail
-
match
boolean match(char[] s, int offset, int length)
Returntrue
if the passed-in character array matches
-
match
default boolean match(CharsRef chars)
Returntrue
if the passed-in CharsRef matches
-
fromTerms
static CharArrayMatcher fromTerms(java.util.List<BytesRef> terms)
-
-