Trie.getBest

Get the best match from key in a string.

@param s The string @param offset The offset within the string of the key @param len the length of the key @return The value or null if not found

  1. V getBest(string s)
  2. V getBest(string s, int offset, int len)
    interface Trie(V)
    V
    getBest
    (
    string s
    ,
    int offset
    ,
    int len
    )
  3. V getBest(byte[] b, int offset, int len)
  4. V getBest(ByteBuffer b, int offset, int len)

Meta