Class ByteTrie.ByteTrieNode<T>
- java.lang.Object
-
- org.apache.pdfbox.util.filetypedetector.ByteTrie.ByteTrieNode<T>
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.Map<java.lang.Byte,ByteTrie.ByteTrieNode<T>>
children
private T
value
-
Constructor Summary
Constructors Constructor Description ByteTrieNode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
getValue()
void
setValue(T value)
-
-
-
Field Detail
-
children
private final java.util.Map<java.lang.Byte,ByteTrie.ByteTrieNode<T>> children
-
value
private T value
-
-