Uses of Interface
org.eclipse.jetty.util.Trie
-
Packages that use Trie Package Description org.eclipse.jetty.http Jetty Http : Tools for Http processingorg.eclipse.jetty.util Jetty Util : Common Utility Classes -
-
Uses of Trie in org.eclipse.jetty.http
Fields in org.eclipse.jetty.http declared as Trie Modifier and Type Field Description static Trie<HttpHeader>
HttpHeader. CACHE
static Trie<HttpHeaderValue>
HttpHeaderValue. CACHE
static Trie<HttpMethod>
HttpMethod. CACHE
static Trie<HttpField>
HttpParser. CACHE
Cache of commonHttpField
s including: Common static combinations such as: Connection: close Accept-Encoding: gzip Content-Length: 0 Combinations of Content-Type header for common mime types by common charsets Most common headers with null values so that a lookup will at least determine the header name even if the name:value combination is not cachedstatic Trie<HttpScheme>
HttpScheme. CACHE
static Trie<HttpVersion>
HttpVersion. CACHE
static Trie<MimeTypes.Type>
MimeTypes. CACHE
static Trie<HttpMethod>
HttpMethod. INSENSITIVE_CACHE
static Trie<HttpMethod>
HttpMethod. LOOK_AHEAD
Methods in org.eclipse.jetty.http that return Trie Modifier and Type Method Description Trie<HttpField>
HttpParser. getFieldCache()
-
Uses of Trie in org.eclipse.jetty.util
Classes in org.eclipse.jetty.util that implement Trie Modifier and Type Class Description class
AbstractTrie<V>
Abstract Trie implementation.class
ArrayTernaryTrie<V>
A Ternary Trie String lookup data structure.static class
ArrayTernaryTrie.Growing<V>
class
ArrayTrie<V>
A Trie String lookup data structure using a fixed size array.class
TreeTrie<V>
A Trie String lookup data structure using a treeMethods in org.eclipse.jetty.util that return Trie Modifier and Type Method Description static <T> Trie<T>
Trie. empty(boolean caseInsensitive)
-