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 java.lang.Object implements Trie<V>
Deprecated.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
clear()
Deprecated.void
dump()
Deprecated.boolean
equals(java.lang.Object obj)
Deprecated.V
get(java.lang.String s)
Deprecated.Get an exact match from a String keyV
get(java.lang.String s, int offset, int len)
Deprecated.Get an exact match from a String keyV
get(java.nio.ByteBuffer b)
Deprecated.Get an exact match from a segment of a ByteBuufer as keyV
get(java.nio.ByteBuffer b, int offset, int len)
Deprecated.Get an exact match from a segment of a ByteBuufer as keyV
getBest(byte[] b, int offset, int len)
Deprecated.Get the best match from key in a byte array.V
getBest(java.lang.String s)
Deprecated.Get the best match from key in a String.V
getBest(java.lang.String s, int offset, int length)
Deprecated.Get the best match from key in a String.V
getBest(java.nio.ByteBuffer b, int offset, int len)
Deprecated.Get the best match from key in a byte buffer.int
hashCode()
Deprecated.boolean
isCaseInsensitive()
Deprecated.boolean
isEmpty()
Deprecated.boolean
isFull()
Deprecated.java.util.Set<java.lang.String>
keySet()
Deprecated.boolean
put(java.lang.String s, V v)
Deprecated.Put an entry into the Trieboolean
put(V v)
Deprecated.Put a value as both a key and a value.V
remove(java.lang.String s)
Deprecated.int
size()
Deprecated.java.lang.String
toString()
Deprecated.
-
-
-
Method Detail
-
put
public boolean put(V v)
Deprecated.Description copied from interface:Trie
Put a value as both a key and a value.
-
hashCode
public int hashCode()
Deprecated.- Overrides:
hashCode
in classjava.lang.Object
-
get
public V get(java.lang.String s)
Deprecated.Description copied from interface:Trie
Get an exact match from a String key
-
get
public V get(java.nio.ByteBuffer b)
Deprecated.Description copied from interface:Trie
Get 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:Trie
Get 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:
isCaseInsensitive
in interfaceTrie<V>
-
equals
public boolean equals(java.lang.Object obj)
Deprecated.- Overrides:
equals
in classjava.lang.Object
-
put
public boolean put(java.lang.String s, V v)
Deprecated.Description copied from interface:Trie
Put an entry into the Trie
-
get
public V get(java.lang.String s, int offset, int len)
Deprecated.Description copied from interface:Trie
Get an exact match from a String key
-
get
public V get(java.nio.ByteBuffer b, int offset, int len)
Deprecated.Description copied from interface:Trie
Get an exact match from a segment of a ByteBuufer as key
-
getBest
public V getBest(java.lang.String s)
Deprecated.Description copied from interface:Trie
Get the best match from key in a String.
-
getBest
public V getBest(java.lang.String s, int offset, int length)
Deprecated.Description copied from interface:Trie
Get the best match from key in a String.
-
getBest
public V getBest(java.nio.ByteBuffer b, int offset, int len)
Deprecated.Description copied from interface:Trie
Get the best match from key in a byte buffer. The key is assumed to by ISO_8859_1 characters.
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toString
in classjava.lang.Object
-
keySet
public java.util.Set<java.lang.String> keySet()
Deprecated.
-
dump
public void dump()
Deprecated.
-
isEmpty
public boolean isEmpty()
Deprecated.
-
size
public int size()
Deprecated.
-
-