Uses of Class
org.kiwiproject.net.KiwiInternetAddresses.IpScheme
-
Packages that use KiwiInternetAddresses.IpScheme Package Description org.kiwiproject.net -
-
Uses of KiwiInternetAddresses.IpScheme in org.kiwiproject.net
Methods in org.kiwiproject.net that return KiwiInternetAddresses.IpScheme Modifier and Type Method Description static KiwiInternetAddresses.IpSchemeKiwiInternetAddresses.IpScheme. valueOf(String name)Returns the enum constant of this type with the specified name.static KiwiInternetAddresses.IpScheme[]KiwiInternetAddresses.IpScheme. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.kiwiproject.net with parameters of type KiwiInternetAddresses.IpScheme Modifier and Type Method Description static Optional<String>KiwiInternetAddresses. findFirstMatchingAddress(List<String> subnetCidrs, KiwiInternetAddresses.IpScheme ipScheme)Attempts to find the first IP address on the machine that matches one of the given subnet CIDRs.static StringKiwiInternetAddresses. findFirstMatchingAddressOrNull(List<String> subnetCidrs, KiwiInternetAddresses.IpScheme ipScheme)Finds the first IP address on the machine that matches one of the given subnet CIDRs or returns null if not found.static StringKiwiInternetAddresses. findFirstMatchingAddressOrThrow(List<String> subnetCidrs, KiwiInternetAddresses.IpScheme ipScheme)Finds the first IP address on the machine that matches one of the given subnet CIDRs or throws IllegalStateException if not found.static List<String>KiwiInternetAddresses. findMatchingAddresses(List<String> subnetCidrs, KiwiInternetAddresses.IpScheme ipScheme)Finds all IP addresses on the machine that matches one of the given subnet CIDRs.
-