Interface DataBufferUtils.Matcher
- Enclosing class:
- DataBufferUtils
public static interface DataBufferUtils.Matcher
Contract to find delimiter(s) against one or more data buffers that can
be passed one at a time to the
match(DataBuffer) method.- Since:
- 5.2
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionbyte[]Return the delimiter from the last invocation ofmatch(DataBuffer).intmatch(DataBuffer dataBuffer) Find the first matching delimiter and return the index of the last byte of the delimiter, or-1if not found.voidreset()Reset the state of this matcher.
-
Method Details
-
match
Find the first matching delimiter and return the index of the last byte of the delimiter, or-1if not found. -
delimiter
byte[] delimiter()Return the delimiter from the last invocation ofmatch(DataBuffer). -
reset
void reset()Reset the state of this matcher.
-