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 interfaceAddressSectioninterfaceAddressSegmentRepresents a single segment of an address.interfaceAddressSegmentSeriesRepresents a series of address segments, each of equal byte size, the byte size being a whole number of bytes.interfaceIPAddressSegmentSeriesRepresents a series of IP address segments.Classes in inet.ipaddr that implement AddressComponent Modifier and Type Class Description classAddressAn address, or a collection of multiple addresses.classIPAddressA single IP address, or a subnet of multiple addresses.classIPAddressSectionA section of an IPAddress.classIPAddressSegmentThis represents a single segment of an IP address.Methods in inet.ipaddr that return AddressComponent Modifier and Type Method Description AddressComponentAddressComponent. reverseBits(boolean perByte)Returns a new AddressComponent with the bits reversed.AddressComponentAddressComponent. 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 AddressComponentAddressComponentRange. getLower()If this instance represents multiple address items, returns the one with the lowest numeric value.AddressComponentAddressComponentRange. 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 classIPv4AddressAn IPv4 address, or a subnet of multiple IPv4 addresses.classIPv4AddressSectionA section of an IPv4Address.classIPv4AddressSegmentThis 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 classIPv6AddressAn IPv6 address, or a subnet of multiple IPv6 addresses.classIPv6AddressSectionA section of an IPv6Address.classIPv6AddressSegmentThis 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 classMACAddressA MAC address, or a collection of multiple MAC addresses.classMACAddressSectionA section of a MACAddress.classMACAddressSegmentRepresents a segment of a MAC address.
-