Trie.get

Get an exact match from a string key

@param s The key @param offset The offset within the string of the key @param len the length of the key @return the value for the string / offset / length

  1. V get(string s)
  2. V get(string s, int offset, int len)
    interface Trie(V)
    V
    get
    (
    string s
    ,
    int offset
    ,
    int len
    )
  3. V get(ByteBuffer b)
  4. V get(ByteBuffer b, int offset, int len)

Meta