Uses of Class
inet.ipaddr.format.util.AddressTrie
-
Packages that use AddressTrie Package Description inet.ipaddr.format.util Contains utility classes such as collections, spliterators, and String-writers.inet.ipaddr.ipv4 Classes for IPv4inet.ipaddr.ipv6 Classes for IPv6inet.ipaddr.mac Classes for MAC addresses. -
-
Uses of AddressTrie in inet.ipaddr.format.util
Classes in inet.ipaddr.format.util with type parameters of type AddressTrie Modifier and Type Class Description class
BaseDualIPv4v6Tries<T4 extends AddressTrie<IPv4Address>,T6 extends AddressTrie<IPv6Address>>
Contains a pair of IPv4 and IPv6 tries for a data structure that can have fast look-up and containment checks of both IPv4 and IPv6 addresses.class
BaseDualIPv4v6Tries<T4 extends AddressTrie<IPv4Address>,T6 extends AddressTrie<IPv6Address>>
Contains a pair of IPv4 and IPv6 tries for a data structure that can have fast look-up and containment checks of both IPv4 and IPv6 addresses.Subclasses of AddressTrie in inet.ipaddr.format.util Modifier and Type Class Description class
AssociativeAddressTrie<K extends Address,V>
An address trie in which each node is associated with a value.Methods in inet.ipaddr.format.util that return AddressTrie Modifier and Type Method Description AddressTrie<E>
AddressTrie.TrieNode. asNewTrie()
Creates a new sub-trie, copying the nodes starting with this node as root.AddressTrie<E>
AddressTrieSet. asTrie()
Returns a trie representing this set.AddressTrie<E>
AddressTrie. clone()
Methods in inet.ipaddr.format.util with parameters of type AddressTrie Modifier and Type Method Description static java.lang.String
AddressTrie. toString(boolean withNonAddedKeys, AddressTrie<?>... tries)
Produces a visual representation of the given tries joined by a single root node, with one node per line.Constructors in inet.ipaddr.format.util with parameters of type AddressTrie Constructor Description AddressTrieSet(AddressTrie<E> trie)
AddressTrieSet(AddressTrie<E> trie, java.util.Collection<? extends E> collection)
-
Uses of AddressTrie in inet.ipaddr.ipv4
Subclasses of AddressTrie in inet.ipaddr.ipv4 Modifier and Type Class Description class
IPv4AddressAssociativeTrie<V>
An IPv4 address trie in which each node can be associated with a value.class
IPv4AddressTrie
An IPv4 address trie. -
Uses of AddressTrie in inet.ipaddr.ipv6
Subclasses of AddressTrie in inet.ipaddr.ipv6 Modifier and Type Class Description class
IPv6AddressAssociativeTrie<V>
An IPv6 address trie in which each node can be associated with a value.class
IPv6AddressTrie
An IPv6 address trie. -
Uses of AddressTrie in inet.ipaddr.mac
Subclasses of AddressTrie in inet.ipaddr.mac Modifier and Type Class Description class
MACAddressAssociativeTrie<V>
A MAC address trie in which each node can be associated with a value.class
MACAddressTrie
A MAC address trie.
-