Uses of Class
org.wildfly.common.net.CidrAddress
-
Packages that use CidrAddress Package Description org.wildfly.common.net Utilities relating abstractly to network-related activities. -
-
Uses of CidrAddress in org.wildfly.common.net
Fields in org.wildfly.common.net declared as CidrAddress Modifier and Type Field Description static CidrAddress
CidrAddress. INET4_ANY_CIDR
The CIDR address representing all IPv4 addresses.static CidrAddress
CidrAddress. INET6_ANY_CIDR
The CIDR address representing all IPv6 addresses.Methods in org.wildfly.common.net that return CidrAddress Modifier and Type Method Description static CidrAddress
CidrAddress. create(byte[] addressBytes, int netmaskBits)
Create a new CIDR address.static CidrAddress
CidrAddress. create(java.net.InetAddress networkAddress, int netmaskBits)
Create a new CIDR address.CidrAddress
CidrAddressTable.Mapping. getRange()
Get the address range of this entry.static CidrAddress
Inet. parseCidrAddress(java.lang.String address)
Parse a CIDR address into aCidrAddress
object.Methods in org.wildfly.common.net with parameters of type CidrAddress Modifier and Type Method Description int
CidrAddress. compareTo(CidrAddress other)
boolean
CidrAddress. equals(CidrAddress obj)
boolean
CidrAddress. matches(CidrAddress address)
Determine if this CIDR address matches the given CIDR address.T
CidrAddressTable. put(CidrAddress block, T value)
T
CidrAddressTable. putIfAbsent(CidrAddress block, T value)
T
CidrAddressTable. removeExact(CidrAddress block)
boolean
CidrAddressTable. removeExact(CidrAddress block, T expect)
T
CidrAddressTable. replaceExact(CidrAddress block, T value)
boolean
CidrAddressTable. replaceExact(CidrAddress block, T expect, T update)
-