接口 DataBufferUtils.Matcher

封闭类:
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.
另请参阅:
  • 方法概要

    修饰符和类型
    方法
    说明
    byte[]
    Return the delimiter from the last invocation of match(DataBuffer).
    int
    match(DataBuffer dataBuffer)
    Find the first matching delimiter and return the index of the last byte of the delimiter, or -1 if not found.
    void
    Reset the state of this matcher.
  • 方法详细资料

    • match

      int match(DataBuffer dataBuffer)
      Find the first matching delimiter and return the index of the last byte of the delimiter, or -1 if not found.
    • delimiter

      byte[] delimiter()
      Return the delimiter from the last invocation of match(DataBuffer).
    • reset

      void reset()
      Reset the state of this matcher.