Package org.eclipse.jetty.util
Class ArrayTernaryTrie.Growing<V>
- java.lang.Object
-
- org.eclipse.jetty.util.ArrayTernaryTrie.Growing<V>
-
- All Implemented Interfaces:
Trie<V>
- Enclosing class:
- ArrayTernaryTrie<V>
@Deprecated(since="2021-05-27") public static class ArrayTernaryTrie.Growing<V> extends Object implements Trie<V>
Deprecated.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidclear()Deprecated.voiddump()Deprecated.booleanequals(Object obj)Deprecated.Vget(String s)Deprecated.Get an exact match from a String keyVget(String s, int offset, int len)Deprecated.Get an exact match from a String keyVget(ByteBuffer b)Deprecated.Get an exact match from a segment of a ByteBuufer as keyVget(ByteBuffer b, int offset, int len)Deprecated.Get an exact match from a segment of a ByteBuufer as keyVgetBest(byte[] b, int offset, int len)Deprecated.Get the best match from key in a byte array.VgetBest(String s)Deprecated.Get the best match from key in a String.VgetBest(String s, int offset, int length)Deprecated.Get the best match from key in a String.VgetBest(ByteBuffer b, int offset, int len)Deprecated.Get the best match from key in a byte buffer.inthashCode()Deprecated.booleanisCaseInsensitive()Deprecated.booleanisEmpty()Deprecated.booleanisFull()Deprecated.Set<String>keySet()Deprecated.booleanput(String s, V v)Deprecated.Put an entry into the Triebooleanput(V v)Deprecated.Put a value as both a key and a value.Vremove(String s)Deprecated.intsize()Deprecated.StringtoString()Deprecated.
-
-
-
Method Detail
-
put
public boolean put(V v)
Deprecated.Description copied from interface:TriePut a value as both a key and a value.
-
get
public V get(String s)
Deprecated.Description copied from interface:TrieGet an exact match from a String key
-
get
public V get(ByteBuffer b)
Deprecated.Description copied from interface:TrieGet an exact match from a segment of a ByteBuufer as key
-
getBest
public V getBest(byte[] b, int offset, int len)
Deprecated.Description copied from interface:TrieGet the best match from key in a byte array. The key is assumed to by ISO_8859_1 characters.
-
isCaseInsensitive
public boolean isCaseInsensitive()
Deprecated.- Specified by:
isCaseInsensitivein interfaceTrie<V>
-
put
public boolean put(String s, V v)
Deprecated.Description copied from interface:TriePut an entry into the Trie
-
get
public V get(String s, int offset, int len)
Deprecated.Description copied from interface:TrieGet an exact match from a String key
-
get
public V get(ByteBuffer b, int offset, int len)
Deprecated.Description copied from interface:TrieGet an exact match from a segment of a ByteBuufer as key
-
getBest
public V getBest(String s)
Deprecated.Description copied from interface:TrieGet the best match from key in a String.
-
getBest
public V getBest(String s, int offset, int length)
Deprecated.Description copied from interface:TrieGet the best match from key in a String.
-
getBest
public V getBest(ByteBuffer b, int offset, int len)
Deprecated.Description copied from interface:TrieGet the best match from key in a byte buffer. The key is assumed to by ISO_8859_1 characters.
-
dump
public void dump()
Deprecated.
-
isEmpty
public boolean isEmpty()
Deprecated.
-
size
public int size()
Deprecated.
-
-