Uses of Class
io.smallrye.common.net.CidrAddress
-
Uses of CidrAddress in io.smallrye.common.net
Fields in io.smallrye.common.net declared as CidrAddressModifier and TypeFieldDescriptionstatic final CidrAddressCidrAddress.INET4_ANY_CIDRThe CIDR address representing all IPv4 addresses.static final CidrAddressCidrAddress.INET6_ANY_CIDRThe CIDR address representing all IPv6 addresses.Methods in io.smallrye.common.net that return CidrAddressModifier and TypeMethodDescriptionstatic CidrAddressCidrAddress.create(byte[] addressBytes, int netmaskBits) Create a new CIDR address.static CidrAddressCidrAddress.create(InetAddress networkAddress, int netmaskBits) Create a new CIDR address.CidrAddressTable.Mapping.getRange()Get the address range of this entry.static CidrAddressInet.parseCidrAddress(String address) Parse a CIDR address into aCidrAddressobject.Methods in io.smallrye.common.net with parameters of type CidrAddressModifier and TypeMethodDescriptionintCidrAddress.compareTo(CidrAddress other) booleanCidrAddress.equals(CidrAddress obj) Returnstrueif this address is equal to the given address, orfalseif it is not.booleanCidrAddress.matches(CidrAddress address) Determine if this CIDR address matches the given CIDR address.CidrAddressTable.put(CidrAddress block, T value) Add a mapping for the given block.CidrAddressTable.putIfAbsent(CidrAddress block, T value) Add a mapping for the given block if one is not already present.CidrAddressTable.removeExact(CidrAddress block) Remove a mapping for a specific address block.booleanCidrAddressTable.removeExact(CidrAddress block, T expect) Remove a mapping for a specific address block if its value is the expected value.CidrAddressTable.replaceExact(CidrAddress block, T value) Replace a mapping for the given block if one is already present.booleanCidrAddressTable.replaceExact(CidrAddress block, T expect, T update) Replace a mapping for the given block if one is already present with the given expected value.