Uses of Interface
inet.ipaddr.AddressComponent
-
Packages that use AddressComponent 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.ipv4 Classes for IPv4inet.ipaddr.ipv6 Classes for IPv6inet.ipaddr.mac Classes for MAC addresses. -
-
Uses of AddressComponent in inet.ipaddr
Subinterfaces of AddressComponent in inet.ipaddr Modifier and Type Interface Description interface
AddressSection
interface
AddressSegment
Represents a single segment of an address.interface
AddressSegmentSeries
Represents a series of address segments, each of equal byte size, the byte size being a whole number of bytes.interface
IPAddressSegmentSeries
Represents a series of IP address segments.Classes in inet.ipaddr that implement AddressComponent Modifier and Type Class Description class
Address
An address, or a collection of multiple addresses.class
IPAddress
A single IP address, or a subnet of multiple addresses.class
IPAddressSection
A section of an IPAddress.class
IPAddressSegment
This represents a single segment of an IP address.Methods in inet.ipaddr that return AddressComponent Modifier and Type Method Description AddressComponent
AddressComponent. reverseBits(boolean perByte)
Returns a new AddressComponent with the bits reversed.AddressComponent
AddressComponent. reverseBytes()
Returns an AddressComponent with the bytes reversed.Methods in inet.ipaddr that return types with arguments of type AddressComponent Modifier and Type Method Description AddressComponentSpliterator<? extends AddressComponent>
AddressComponent. spliterator()
-
Uses of AddressComponent in inet.ipaddr.format
Methods in inet.ipaddr.format with type parameters of type AddressComponent Modifier and Type Method Description static <T extends AddressComponent>
java.util.stream.Stream<T>AddressComponentRange. stream(java.util.function.Function<T,java.util.stream.Stream<? extends T>> addrStreamFunc, java.util.Collection<? extends T> components)
Given a list of components, and a lambda that returns a stream for that component type, returns a sequential combined stream produced by applying that lambda to all the components.static <T extends AddressComponent>
java.util.stream.Stream<T>AddressComponentRange. stream(java.util.function.Function<T,java.util.stream.Stream<? extends T>> addrStreamFunc, T... components)
Given a list of components, and a lambda that returns a stream for that component type, returns a combined stream produced by applying that lambda to all the components.Methods in inet.ipaddr.format that return AddressComponent Modifier and Type Method Description AddressComponent
AddressComponentRange. getLower()
If this instance represents multiple address items, returns the one with the lowest numeric value.AddressComponent
AddressComponentRange. getUpper()
If this instance represents multiple address items, returns the one with the highest numeric value.Methods in inet.ipaddr.format that return types with arguments of type AddressComponent Modifier and Type Method Description java.lang.Iterable<? extends AddressComponent>
AddressComponentRange. getIterable()
Useful for using an instance in a "for-each loop".java.util.Iterator<? extends AddressComponent>
AddressComponentRange. iterator()
Iterates through the individual address components.AddressComponentRangeSpliterator<? extends AddressComponentRange,? extends AddressComponent>
AddressComponentRange. spliterator()
Partitions and traverses through the individual address components.java.util.stream.Stream<? extends AddressComponent>
AddressComponentRange. stream()
Returns a sequential stream of the individual address components.Methods in inet.ipaddr.format with parameters of type AddressComponent Modifier and Type Method Description static <T extends AddressComponent>
java.util.stream.Stream<T>AddressComponentRange. stream(java.util.function.Function<T,java.util.stream.Stream<? extends T>> addrStreamFunc, T... components)
Given a list of components, and a lambda that returns a stream for that component type, returns a combined stream produced by applying that lambda to all the components. -
Uses of AddressComponent in inet.ipaddr.ipv4
Classes in inet.ipaddr.ipv4 that implement AddressComponent Modifier and Type Class Description class
IPv4Address
An IPv4 address, or a subnet of multiple IPv4 addresses.class
IPv4AddressSection
A section of an IPv4Address.class
IPv4AddressSegment
This represents a segment of an IPv4 address. -
Uses of AddressComponent in inet.ipaddr.ipv6
Classes in inet.ipaddr.ipv6 that implement AddressComponent Modifier and Type Class Description class
IPv6Address
An IPv6 address, or a subnet of multiple IPv6 addresses.class
IPv6AddressSection
A section of an IPv6Address.class
IPv6AddressSegment
This represents a segment of an IPv6 address. -
Uses of AddressComponent in inet.ipaddr.mac
Classes in inet.ipaddr.mac that implement AddressComponent Modifier and Type Class Description class
MACAddress
A MAC address, or a collection of multiple MAC addresses.class
MACAddressSection
A section of a MACAddress.class
MACAddressSegment
Represents a segment of a MAC address.
-