Interface Trie.ValueConsumer<T>

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default void addPathByte​(int nextByte)
      Add a single byte to the path.
      default void addPathBytes​(org.agrona.DirectBuffer buffer, int pos, int count)
      Add the count bytes from position pos in the given buffer.
      default java.lang.Void complete()
      Called at the completion of the walk.
      default void content​(T content)
      Called when content is found.
      default void resetPathLength​(int newDepth)
      Delete all bytes beyond the given length.
      • Methods inherited from interface java.util.function.Consumer

        accept, andThen