Uses of Class
inet.ipaddr.IPAddress
-
Packages that use IPAddress Package Description inet.ipaddr Base classes for IP addresses and generic addresses.inet.ipaddr.format Base classes for generic representations of address divisions and groupings of address divisions.inet.ipaddr.format.util Contains utility classes such as collections, spliterators, and String-writers.inet.ipaddr.format.validate Validation of address strings and creation of address representations from the validated strings.inet.ipaddr.ipv4 Classes for IPv4inet.ipaddr.ipv6 Classes for IPv6 -
-
Uses of IPAddress in inet.ipaddr
Classes in inet.ipaddr with type parameters of type IPAddress Modifier and Type Class Description class
IPAddressNetwork<T extends IPAddress,R extends IPAddressSection,E extends IPAddressSection,S extends IPAddressSegment,J extends java.net.InetAddress>
Represents a network of addresses of a single IP version providing a collection of standard addresses components for that version, such as masks and loopbacks.static class
IPAddressNetwork.IPAddressCreator<T extends IPAddress,R extends IPAddressSection,E extends IPAddressSection,S extends IPAddressSegment,J extends java.net.InetAddress>
Methods in inet.ipaddr that return IPAddress Modifier and Type Method Description abstract IPAddress
IPAddress. adjustPrefixBySegment(boolean nextSegment)
abstract IPAddress
IPAddress. adjustPrefixBySegment(boolean nextSegment, boolean zeroed)
abstract IPAddress
IPAddress. adjustPrefixLength(int adjustment)
Increases or decreases prefix length by the given increment.abstract IPAddress
IPAddress. adjustPrefixLength(int adjustment, boolean zeroed)
abstract IPAddress
IPAddress. applyPrefixLength(int networkPrefixLength)
Deprecated.IPAddress
HostName. asAddress()
If this represents an ip address, returns that address.IPAddress
HostName. asAddress(IPAddress.IPVersion version)
If this represents an ip address, returns that address.IPAddress
IPAddress. assignMinPrefixForBlock()
Constructs an equivalent address with the smallest CIDR prefix possible (largest network), such that the range of values are a set of subnet blocks for that prefix.IPAddress
IPAddress. assignPrefixForSingleBlock()
Returns the equivalent CIDR address with a prefix length for which the address subnet block matches the range of values in this address.abstract IPAddress
IPAddress. bitwiseOr(IPAddress mask)
Equivalent to callingbitwiseOr(IPAddress, boolean)
with the second argument as false.abstract IPAddress
IPAddress. bitwiseOr(IPAddress mask, boolean retainPrefix)
Does the bitwise disjunction with this address.abstract IPAddress
IPAddress. bitwiseOrNetwork(IPAddress mask, int networkPrefixLength)
Does the bitwise disjunction with this address.abstract IPAddress
IPAddress. coverWithPrefixBlock(IPAddress other)
Returns the minimal-size prefix block that covers all the addresses spanning from this subnet to the given subnet.abstract IPAddress
IPAddressSeqRange. coverWithPrefixBlock()
IPAddress
IPAddressNetwork.IPAddressGenerator. from(byte[] bytes)
IPAddress
IPAddressNetwork.IPAddressGenerator. from(byte[] bytes, int byteStartIndex, int byteEndIndex)
IPAddress
IPAddressNetwork.IPAddressGenerator. from(byte[] bytes, int byteStartIndex, int byteEndIndex, java.lang.Integer networkPrefixLength)
IPAddress
IPAddressNetwork.IPAddressGenerator. from(byte[] bytes, java.lang.Integer prefixLength)
IPAddress
IPAddressNetwork.IPAddressGenerator. from(IPAddress.IPVersion version, Address.SegmentValueProvider lowerValueProvider, Address.SegmentValueProvider upperValueProvider, java.lang.Integer prefixLength)
IPAddress
IPAddressNetwork.IPAddressGenerator. from(java.net.InetAddress inetAddress)
IPAddress
IPAddressNetwork.IPAddressGenerator. from(java.net.InetAddress inetAddress, java.lang.Integer prefixLength)
IPAddress
IPAddressNetwork.IPAddressGenerator. from(java.net.InterfaceAddress interfaceAddress)
IPAddress
HostName. getAddress()
If this represents an ip address, returns that address.IPAddress
IPAddressString. getAddress()
If this represents an ip address, returns that address.IPAddress
IPAddressString. getAddress(IPAddress.IPVersion version)
Similar toIPAddressString.toAddress(inet.ipaddr.IPAddress.IPVersion)
, but returns null rather than throwing an exception with the address is invalid or does not match the supplied version.IPAddress
IPAddressString. getHostAddress()
If this address string was constructed from a host address with prefix length, then this provides just the host address, rather than the address provided byIPAddressString.getAddress()
that incorporates the prefix.IPAddress
IPAddress. getHostMask()
abstract IPAddress
IPAddress. getLower()
IPAddress
IPAddressSeqRange. getLower()
abstract IPAddress
IPAddress. getLowerNonZeroHost()
IPAddress
HostName. getMask()
If a mask was provided with this host name, this returns the resulting mask value.IPAddress
IPAddressString. getMask()
If a mask was provided with this address string, this returns the resulting mask value.IPAddress
IPAddress. getNetworkMask()
abstract IPAddress
IPAddress. getUpper()
IPAddress
IPAddressSeqRange. getUpper()
abstract IPAddress
IPAddress. increment(long increment)
abstract IPAddress
IPAddress. incrementBoundary(long increment)
abstract IPAddress
IPAddress. intersect(IPAddress other)
Produces the subnet whose addresses are found in both this and the given subnet argument, or null if no such addresses.abstract IPAddress
IPAddress. mask(IPAddress mask)
Equivalent to callingmask(IPAddress, boolean)
with the second argument as false.abstract IPAddress
IPAddress. mask(IPAddress mask, boolean retainPrefix)
Applies the given mask to all addresses represented by this IPAddress.abstract IPAddress
IPAddress. maskNetwork(IPAddress mask, int networkPrefixLength)
Applies the given mask to all addresses represented by this IPAddress while also applying the given prefix length at the same time.abstract IPAddress[]
IPAddress. mergeToPrefixBlocks(IPAddress... addresses)
Merges this with the list of addresses to produce the smallest list of prefix blocks.abstract IPAddress[]
IPAddress. mergeToSequentialBlocks(IPAddress... addresses)
Merges this with the list of subnets to produce the smallest list of block subnets that are sequential.IPAddress
IPAddress. removeBitCountPrefixLength()
Removes the prefix length from addresses with a prefix length extending to the end of the address.abstract IPAddress
IPAddress. removePrefixLength()
Deprecated.abstract IPAddress
IPAddress. removePrefixLength(boolean zeroed)
Deprecated.abstract IPAddress
IPAddress. reverseBits(boolean perByte)
abstract IPAddress
IPAddress. reverseBytes()
abstract IPAddress
IPAddress. reverseBytesPerSegment()
abstract IPAddress
IPAddress. reverseSegments()
abstract IPAddress
IPAddress. setPrefixLength(int prefixLength)
abstract IPAddress
IPAddress. setPrefixLength(int prefixLength, boolean zeroed)
abstract IPAddress
IPAddress. setPrefixLength(int prefixLength, boolean zeroed, boolean zeroHostIsBlock)
Sets the prefix length while allowing the caller to control whether bits moved in or out of the prefix become zero, and whether a zero host for the new prefix bits can be translated into a prefix block.abstract IPAddress[]
IPAddress. spanWithPrefixBlocks(IPAddress other)
Produces the list of prefix block subnets that span from this subnet to the given subnet.abstract IPAddress[]
IPAddressSeqRange. spanWithPrefixBlocks()
abstract IPAddress[]
IPAddress. spanWithSequentialBlocks(IPAddress other)
Produces a list of sequential block subnets that span all values from this subnet to the given subnet.abstract IPAddress[]
IPAddressSeqRange. spanWithSequentialBlocks()
abstract IPAddress[]
IPAddress. subtract(IPAddress other)
Subtract the given subnet from this subnet, returning an array of subnets for the result (the subnets will not be contiguous so an array is required).IPAddress
HostName. toAddress()
If this represents an ip address, returns that address.IPAddress
IPAddressString. toAddress()
Produces theIPAddress
corresponding to this IPAddressString.IPAddress
IPAddressString. toAddress(IPAddress.IPVersion version)
Produces theIPAddress
of the specified address version corresponding to this IPAddressString.IPAddress
IPAddressString. toHostAddress()
If this address string was constructed from a string comprising of a host address with prefix length or mask, then this provides just the host address, rather than the address with the prefix or mask applied that is provided byIPAddressString.toAddress()
.abstract IPAddress
IPAddress. toMaxHost()
abstract IPAddress
IPAddress. toMaxHost(int prefixLength)
abstract IPAddress
IPAddress. toPrefixBlock()
Returns the subnet associated with the prefix length of this address.abstract IPAddress
IPAddress. toPrefixBlock(int networkPrefixLength)
abstract IPAddress
IPAddress. toZeroHost()
abstract IPAddress
IPAddress. toZeroHost(int prefixLength)
abstract IPAddress
IPAddress. toZeroNetwork()
abstract IPAddress
IPAddress. withoutPrefixLength()
Methods in inet.ipaddr that return types with arguments of type IPAddress Modifier and Type Method Description abstract java.util.Iterator<? extends IPAddress>
IPAddress. blockIterator(int segmentCount)
abstract AddressComponentSpliterator<? extends IPAddress>
IPAddress. blockSpliterator(int segmentCount)
abstract java.util.stream.Stream<? extends IPAddress>
IPAddress. blockStream(int segmentCount)
abstract java.lang.Iterable<? extends IPAddress>
IPAddress. getIterable()
abstract java.lang.Iterable<? extends IPAddress>
IPAddressSeqRange. getIterable()
abstract java.util.Iterator<? extends IPAddress>
IPAddress. iterator()
abstract java.util.Iterator<? extends IPAddress>
IPAddressSeqRange. iterator()
abstract java.util.Iterator<? extends IPAddress>
IPAddress. nonZeroHostIterator()
abstract java.util.Iterator<? extends IPAddress>
IPAddress. prefixBlockIterator()
abstract java.util.Iterator<? extends IPAddress>
IPAddressSeqRange. prefixBlockIterator(int prefLength)
Iterates through the range of prefix blocks in this range instance using the given prefix length.abstract AddressComponentSpliterator<? extends IPAddress>
IPAddress. prefixBlockSpliterator()
abstract AddressComponentRangeSpliterator<? extends IPAddressSeqRange,? extends IPAddress>
IPAddressSeqRange. prefixBlockSpliterator(int prefLength)
abstract java.util.stream.Stream<? extends IPAddress>
IPAddress. prefixBlockStream()
abstract java.util.stream.Stream<? extends IPAddress>
IPAddressSeqRange. prefixBlockStream(int prefLength)
abstract java.util.Iterator<? extends IPAddress>
IPAddress. prefixIterator()
abstract AddressComponentSpliterator<? extends IPAddress>
IPAddress. prefixSpliterator()
abstract java.util.stream.Stream<? extends IPAddress>
IPAddress. prefixStream()
java.util.Iterator<? extends IPAddress>
IPAddress. sequentialBlockIterator()
AddressComponentSpliterator<? extends IPAddress>
IPAddress. sequentialBlockSpliterator()
java.util.stream.Stream<? extends IPAddress>
IPAddress. sequentialBlockStream()
abstract AddressComponentSpliterator<? extends IPAddress>
IPAddress. spliterator()
abstract AddressComponentRangeSpliterator<? extends IPAddressSeqRange,? extends IPAddress>
IPAddressSeqRange. spliterator()
abstract java.util.stream.Stream<? extends IPAddress>
IPAddress. stream()
abstract java.util.stream.Stream<? extends IPAddress>
IPAddressSeqRange. stream()
Methods in inet.ipaddr with parameters of type IPAddress Modifier and Type Method Description <V> V
IPAddress. applyToBounds(java.util.function.BiFunction<? super IPAddress,? super IPAddress,V> func, IPAddress... series)
Finds the lowest and highest single-valued address from the given addresses and subnets and this one, calling the given BiFunction with the lowest as first argument and the highest as second.abstract IPAddress
IPAddress. bitwiseOr(IPAddress mask)
Equivalent to callingbitwiseOr(IPAddress, boolean)
with the second argument as false.abstract IPAddress
IPAddress. bitwiseOr(IPAddress mask, boolean retainPrefix)
Does the bitwise disjunction with this address.abstract IPAddress
IPAddress. bitwiseOrNetwork(IPAddress mask, int networkPrefixLength)
Does the bitwise disjunction with this address.boolean
IPAddress. contains(IPAddress other)
Returns whether this contains all values of the given address or subnetboolean
IPAddressSeqRange. contains(IPAddress other)
boolean
IPAddress. containsNonZeroHosts(IPAddress other)
Returns whether this address contains the non-zero host addresses in the other address or subnetabstract IPAddress
IPAddress. coverWithPrefixBlock(IPAddress other)
Returns the minimal-size prefix block that covers all the addresses spanning from this subnet to the given subnet.abstract IPAddress
IPAddress. intersect(IPAddress other)
Produces the subnet whose addresses are found in both this and the given subnet argument, or null if no such addresses.boolean
IPAddressConverter.DefaultAddressConverter. isIPv4Convertible(IPAddress address)
boolean
IPAddressConverter. isIPv4Convertible(IPAddress address)
returns whether the address is IPv4 or can be converted to IPv4.boolean
IPAddressConverter.DefaultAddressConverter. isIPv6Convertible(IPAddress address)
boolean
IPAddressConverter. isIPv6Convertible(IPAddress address)
returns whether the address is IPv6 or can be converted to IPv6.abstract IPAddress
IPAddress. mask(IPAddress mask)
Equivalent to callingmask(IPAddress, boolean)
with the second argument as false.abstract IPAddress
IPAddress. mask(IPAddress mask, boolean retainPrefix)
Applies the given mask to all addresses represented by this IPAddress.abstract IPAddress
IPAddress. maskNetwork(IPAddress mask, int networkPrefixLength)
Applies the given mask to all addresses represented by this IPAddress while also applying the given prefix length at the same time.boolean
IPAddress. matchesWithMask(IPAddress other, IPAddress mask)
Applies the mask to this address and then compares values with the given addressabstract IPAddress[]
IPAddress. mergeToPrefixBlocks(IPAddress... addresses)
Merges this with the list of addresses to produce the smallest list of prefix blocks.abstract IPAddress[]
IPAddress. mergeToSequentialBlocks(IPAddress... addresses)
Merges this with the list of subnets to produce the smallest list of block subnets that are sequential.boolean
IPAddress. prefixContains(IPAddress other)
Returns whether the prefix of this address contains all values of the same bits in the given address or subnetabstract IPAddress[]
IPAddress. spanWithPrefixBlocks(IPAddress other)
Produces the list of prefix block subnets that span from this subnet to the given subnet.abstract IPAddressSeqRange
IPAddress. spanWithRange(IPAddress other)
Deprecated.abstract IPAddress[]
IPAddress. spanWithSequentialBlocks(IPAddress other)
Produces a list of sequential block subnets that span all values from this subnet to the given subnet.abstract IPAddress[]
IPAddress. subtract(IPAddress other)
Subtract the given subnet from this subnet, returning an array of subnets for the result (the subnets will not be contiguous so an array is required).IPv4Address
IPAddressConverter.DefaultAddressConverter. toIPv4(IPAddress address)
IPv6Address
IPAddressConverter.DefaultAddressConverter. toIPv6(IPAddress address)
abstract IPAddressSeqRange
IPAddress. toSequentialRange(IPAddress other)
Creates a sequential range instance from this and the given address, spanning from the lowest to the highest addresses in the two subnetsMethod parameters in inet.ipaddr with type arguments of type IPAddress Modifier and Type Method Description <V> V
IPAddress. applyToBounds(java.util.function.BiFunction<? super IPAddress,? super IPAddress,V> func, IPAddress... series)
Finds the lowest and highest single-valued address from the given addresses and subnets and this one, calling the given BiFunction with the lowest as first argument and the highest as second.<V> V
IPAddress. applyToBounds(java.util.function.BiFunction<? super IPAddress,? super IPAddress,V> func, IPAddress... series)
Finds the lowest and highest single-valued address from the given addresses and subnets and this one, calling the given BiFunction with the lowest as first argument and the highest as second.java.lang.String
IPAddressSeqRange. toString(java.util.function.Function<? super IPAddress,java.lang.String> lowerStringer, java.lang.String separator, java.util.function.Function<? super IPAddress,java.lang.String> upperStringer)
Constructors in inet.ipaddr with parameters of type IPAddress Constructor Description HostName(IPAddress addr)
Constructs a host name from an IP address.HostName(IPAddress addr, int port)
Constructs a host name from an IP address and a port. -
Uses of IPAddress in inet.ipaddr.format
Methods in inet.ipaddr.format that return IPAddress Modifier and Type Method Description IPAddress
IPAddressRange. coverWithPrefixBlock()
Returns the minimal-size prefix block that covers all the addresses in this range.IPAddress
IPAddressRange. getLower()
Returns the address in the range with the lowest numeric value.IPAddress
IPAddressRange. getUpper()
Returns the address in the range with the highest numeric value.IPAddress[]
IPAddressRange. spanWithPrefixBlocks()
Produces an array of prefix blocks that spans the same set of addresses.IPAddress[]
IPAddressRange. spanWithSequentialBlocks()
Produces an array of blocks that are sequential that cover the same set of addresses.Methods in inet.ipaddr.format that return types with arguments of type IPAddress Modifier and Type Method Description java.lang.Iterable<? extends IPAddress>
IPAddressRange. getIterable()
Useful for using an instance in a "for-each loop", as infor(addr : address.getIterable()) { ...
java.util.Iterator<? extends IPAddress>
IPAddressRange. iterator()
Iterates through the individual addresses of this address or subnet.java.util.Iterator<? extends IPAddress>
IPAddressRange. prefixBlockIterator(int prefLength)
Iterates through the range of prefix blocks in this range instance using the given prefix length.AddressComponentRangeSpliterator<? extends IPAddressRange,? extends IPAddress>
IPAddressRange. prefixBlockSpliterator(int prefLength)
Partitions and traverses through the individual prefix blocks for the given prefix length.java.util.stream.Stream<? extends IPAddress>
IPAddressRange. prefixBlockStream(int prefLength)
Returns a sequential stream of the prefix blocks for the given prefix length.AddressComponentRangeSpliterator<? extends IPAddressRange,? extends IPAddress>
IPAddressRange. spliterator()
Partitions and traverses through the individual addresses.Methods in inet.ipaddr.format with parameters of type IPAddress Modifier and Type Method Description boolean
IPAddressRange. contains(IPAddress other)
Returns whether this range contains all addresses in the given address or subnet -
Uses of IPAddress in inet.ipaddr.format.util
Methods in inet.ipaddr.format.util with type parameters of type IPAddress Modifier and Type Method Description static <E extends IPAddress>
Partition<E>Partition. partitionWithSpanningBlocks(E newAddr)
Partitions the address series into prefix blocks and single addresses. -
Uses of IPAddress in inet.ipaddr.format.validate
Methods in inet.ipaddr.format.validate that return IPAddress Modifier and Type Method Description IPAddress
ParsedHost. asAddress()
IPAddress
ParsedHost. asAddress(IPAddress.IPVersion version)
IPAddress
ParsedHost. getMask()
IPAddress
IPAddressProvider.AdjustedAddressCreator. getProviderAddress()
IPAddress
IPAddressProvider.CachedAddressCreator. getProviderAddress()
IPAddress
IPAddressProvider.CachedAddressCreator. getProviderAddress(IPAddress.IPVersion version)
IPAddress
IPAddressProvider.CachedAddressProvider. getProviderAddress()
IPAddress
IPAddressProvider.CachedAddressProvider. getProviderAddress(IPAddress.IPVersion version)
IPAddress
IPAddressProvider. getProviderAddress()
IPAddress
IPAddressProvider. getProviderAddress(IPAddress.IPVersion version)
IPAddress
IPAddressProvider.NullProvider. getProviderAddress()
IPAddress
IPAddressProvider.NullProvider. getProviderAddress(IPAddress.IPVersion version)
IPAddress
IPAddressProvider.VersionedAddressCreator. getProviderAddress(IPAddress.IPVersion version)
IPAddress
ParsedIPAddress. getProviderAddress()
IPAddress
ParsedIPAddress. getProviderAddress(IPAddress.IPVersion version)
IPAddress
IPAddressProvider.AdjustedAddressCreator. getProviderHostAddress()
IPAddress
IPAddressProvider.CachedAddressCreator. getProviderHostAddress()
IPAddress
IPAddressProvider.CachedAddressProvider. getProviderHostAddress()
IPAddress
IPAddressProvider. getProviderHostAddress()
IPAddress
IPAddressProvider.NullProvider. getProviderHostAddress()
IPAddress
ParsedIPAddress. getProviderHostAddress()
IPAddress
IPAddressProvider.AllCreator. getProviderMask()
default IPAddress
IPAddressProvider. getProviderMask()
IPAddress
ParsedIPAddress. getProviderMask()
Methods in inet.ipaddr.format.validate with parameters of type IPAddress Modifier and Type Method Description static IPAddressProvider
IPAddressProvider. getProviderFor(IPAddress address, IPAddress hostAddress)
Wraps an IPAddress for IPAddressString in the cases where no parsing is provided, the address exists already -
Uses of IPAddress in inet.ipaddr.ipv4
Subclasses of IPAddress in inet.ipaddr.ipv4 Modifier and Type Class Description class
IPv4Address
An IPv4 address, or a subnet of multiple IPv4 addresses.Methods in inet.ipaddr.ipv4 with parameters of type IPAddress Modifier and Type Method Description IPv4Address
IPv4Address. bitwiseOr(IPAddress mask)
IPv4Address
IPv4Address. bitwiseOr(IPAddress mask, boolean retainPrefix)
IPv4Address
IPv4Address. bitwiseOrNetwork(IPAddress mask, int networkPrefixLength)
IPv4Address
IPv4Address. coverWithPrefixBlock(IPAddress other)
IPv4Address
IPv4Address. intersect(IPAddress other)
IPv4Address
IPv4Address. mask(IPAddress mask)
IPv4Address
IPv4Address. mask(IPAddress mask, boolean retainPrefix)
IPv4Address
IPv4Address. maskNetwork(IPAddress mask, int networkPrefixLength)
IPv4Address[]
IPv4Address. mergeToPrefixBlocks(IPAddress... addresses)
IPv4Address[]
IPv4Address. mergeToSequentialBlocks(IPAddress... addresses)
IPv4Address[]
IPv4Address. spanWithPrefixBlocks(IPAddress other)
IPv4AddressSeqRange
IPv4Address. spanWithRange(IPAddress other)
Deprecated.IPv4Address[]
IPv4Address. spanWithSequentialBlocks(IPAddress other)
IPv4Address[]
IPv4Address. subtract(IPAddress other)
IPv4Address
IPv4Address.IPv4AddressConverter. toIPv4(IPAddress address)
If the given address is IPv4, or can be converted to IPv4, returns thatIPv4Address
.IPv4AddressSeqRange
IPv4Address. toSequentialRange(IPAddress other)
-
Uses of IPAddress in inet.ipaddr.ipv6
Subclasses of IPAddress in inet.ipaddr.ipv6 Modifier and Type Class Description class
IPv6Address
An IPv6 address, or a subnet of multiple IPv6 addresses.Methods in inet.ipaddr.ipv6 with parameters of type IPAddress Modifier and Type Method Description IPv6Address
IPv6Address. bitwiseOr(IPAddress mask)
IPv6Address
IPv6Address. bitwiseOr(IPAddress mask, boolean retainPrefix)
IPv6Address
IPv6Address. bitwiseOrNetwork(IPAddress mask, int networkPrefixLength)
IPv6Address
IPv6Address. coverWithPrefixBlock(IPAddress other)
IPv6Address
IPv6Address. intersect(IPAddress other)
IPv6Address
IPv6Address. mask(IPAddress mask)
IPv6Address
IPv6Address. mask(IPAddress mask, boolean retainPrefix)
IPv6Address
IPv6Address. maskNetwork(IPAddress mask, int networkPrefixLength)
IPv6Address[]
IPv6Address. mergeToPrefixBlocks(IPAddress... addresses)
IPv6Address[]
IPv6Address. mergeToSequentialBlocks(IPAddress... addresses)
IPv6Address[]
IPv6Address. spanWithPrefixBlocks(IPAddress other)
IPv6AddressSeqRange
IPv6Address. spanWithRange(IPAddress other)
Deprecated.IPv6Address[]
IPv6Address. spanWithSequentialBlocks(IPAddress other)
IPv6Address[]
IPv6Address. subtract(IPAddress other)
IPv6Address
IPv6Address.IPv6AddressConverter. toIPv6(IPAddress address)
If the given address is IPv6, or can be converted to IPv6, returns thatIPv6Address
.IPv6AddressSeqRange
IPv6Address. toSequentialRange(IPAddress other)
-