public class ByteTrieSingleNode<T> extends ByteTrieLeafNode<T> implements ByteTrieNode<T>
| Constructor and Description |
|---|
ByteTrieSingleNode(byte[] bytes,
T attached) |
ByteTrieSingleNode(byte[] bytes,
T[] attached) |
ByteTrieSingleNode(byte b,
ByteTrieSingleNode<T> next,
T attached) |
ByteTrieSingleNode(byte b,
ByteTrieTerminalNode<T> next,
T attached) |
| Modifier and Type | Method and Description |
|---|---|
byte[] |
getAlternatives() |
T |
getAttached() |
int |
length() |
ByteTrieNode<T> |
nextNode(byte b) |
ByteTrieNode<T> |
nextNode(byte[] bytes) |
ByteTrieNode<T> |
nextNode(byte[] bytes,
int start) |
ByteTrieNode<T> |
proxy(int i) |
getLink, linkclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetLink, linkpublic ByteTrieSingleNode(byte[] bytes,
T attached)
public ByteTrieSingleNode(byte b,
ByteTrieTerminalNode<T> next,
T attached)
public ByteTrieSingleNode(byte b,
ByteTrieSingleNode<T> next,
T attached)
public ByteTrieSingleNode(byte[] bytes,
T[] attached)
public int length()
length in class ByteTrieLeafNode<T>public ByteTrieNode<T> nextNode(byte b)
nextNode in interface ByteTrieNode<T>public ByteTrieNode<T> nextNode(byte[] bytes)
nextNode in interface ByteTrieNode<T>public ByteTrieNode<T> nextNode(byte[] bytes, int start)
nextNode in interface ByteTrieNode<T>public ByteTrieNode<T> proxy(int i)
public T getAttached()
getAttached in interface ByteTrieNode<T>public byte[] getAlternatives()
getAlternatives in interface ByteTrieNode<T>Copyright © 2017. All rights reserved.