Representation of an IPv4 address that works on both the JVM and Scala.js.
- Companion
- object
Value members
Concrete methods
Applies the supplied mask to this address.
Applies the supplied mask to this address.
- Example
scala> ipv4"192.168.29.1".masked(ipv4"255.255.0.0") res0: Ipv4Address = 192.168.0.0
Computes the last address in the network identified by applying the supplied mask to this address.
Computes the last address in the network identified by applying the supplied mask to this address.
- Example
scala> ipv4"192.168.29.1".maskedLast(ipv4"255.255.0.0") res0: Ipv4Address = 192.168.255.255
Gets the IPv4 address after this address, with overflow from 255.255.255.255
to 0.0.0.0
.
Gets the IPv4 address after this address, with overflow from 255.255.255.255
to 0.0.0.0
.
- Definition Classes
Gets the IPv4 address before this address, with underflow from 0.0.0.0
to 255.255.255.255
.
Gets the IPv4 address before this address, with underflow from 0.0.0.0
to 255.255.255.255
.
- Definition Classes
Converts this V4 address to a compat V6 address, where the first 12 bytes are all zero and the last 4 bytes contain the bytes of this V4 address.
Converts this V4 address to a compat V6 address, where the first 12 bytes are all zero and the last 4 bytes contain the bytes of this V4 address.
Converts this address to a 32-bit unsigned integer.
Converts this address to a 32-bit unsigned integer.
Converts this V4 address to a mapped V6 address, where the first 10 bytes are all zero, the next two bytes are
ff
, and the last 4 bytes contain the bytes of this V4 address.
Converts this V4 address to a mapped V6 address, where the first 10 bytes are all zero, the next two bytes are
ff
, and the last 4 bytes contain the bytes of this V4 address.
Returns the dotted decimal representation of this address.
Returns the dotted decimal representation of this address.
- Definition Classes
- Any
Inherited methods
Narrows this address to an Ipv4Address if that is the underlying type.
Narrows this address to an Ipv4Address if that is the underlying type.
- Inherited from
- IpAddress
Narrows this address to an Ipv6Address if that is the underlying type.
Narrows this address to an Ipv6Address if that is the underlying type.
- Inherited from
- IpAddress
Converts this address to a multicast address, as long as it is in the multicast address range.
Converts this address to a multicast address, as long as it is in the multicast address range.
- Inherited from
- IpAddress
Converts this address to a source specific multicast address, as long as it is in the source specific multicast address range.
Converts this address to a source specific multicast address, as long as it is in the source specific multicast address range.
- Inherited from
- IpAddress
If this address is an IPv4 mapped IPv6 address, converts to an IPv4 address, otherwise returns this.
If this address is an IPv4 mapped IPv6 address, converts to an IPv4 address, otherwise returns this.
- Inherited from
- IpAddress
Returns true if this address is a V6 address containing a mapped V4 address.
Returns true if this address is a V6 address containing a mapped V4 address.
- Inherited from
- IpAddress
Resolves this host to an ip address using the platform DNS resolver.
Resolves this host to an ip address using the platform DNS resolver.
If the host cannot be resolved, the effect fails with a java.net.UnknownHostException
.
- Inherited from
- HostPlatform
Resolves this host to all ip addresses known to the platform DNS resolver.
Resolves this host to all ip addresses known to the platform DNS resolver.
If the host cannot be resolved, an empty list is returned.
- Inherited from
- HostPlatform
Resolves this host to an ip address using the platform DNS resolver.
Resolves this host to an ip address using the platform DNS resolver.
If the host cannot be resolved, a None
is returned.
- Inherited from
- HostPlatform
Converts this address to a network order byte array of either 4 or 16 bytes.
Converts this address to a network order byte array of either 4 or 16 bytes.
- Inherited from
- IpAddress