final class Ipv4Address extends IpAddress with Ipv4AddressPlatform

Representation of an IPv4 address that works on both the JVM and Scala.js.

Source
IpAddress.scala
Linear Supertypes
Ipv4AddressPlatform, IpAddress, Serializable, Ordered[IpAddress], Comparable[IpAddress], IpAddressPlatform, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Ipv4Address
  2. Ipv4AddressPlatform
  3. IpAddress
  4. Serializable
  5. Ordered
  6. Comparable
  7. IpAddressPlatform
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def /(prefixBits: Int): Cidr[Ipv4Address.this.type]

    Constructs a Cidr address from this address.

    Constructs a Cidr address from this address.

    Definition Classes
    IpAddress
  4. def <(that: IpAddress): Boolean
    Definition Classes
    Ordered
  5. def <=(that: IpAddress): Boolean
    Definition Classes
    Ordered
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. def >(that: IpAddress): Boolean
    Definition Classes
    Ordered
  8. def >=(that: IpAddress): Boolean
    Definition Classes
    Ordered
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def asIpv4: Option[Ipv4Address]

    Narrows this address to an Ipv4Address if that is the underlying type.

    Narrows this address to an Ipv4Address if that is the underlying type.

    Definition Classes
    IpAddress
  11. def asIpv6: Option[Ipv6Address]

    Narrows this address to an Ipv6Address if that is the underlying type.

    Narrows this address to an Ipv6Address if that is the underlying type.

    Definition Classes
    IpAddress
  12. def asMulticast: Option[Multicast[Ipv4Address.this.type]]

    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.

    Definition Classes
    IpAddress
  13. def asSourceSpecificMulticast: Option[SourceSpecificMulticast[Ipv4Address.this.type]]

    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.

    Definition Classes
    IpAddress
  14. val bytes: Array[Byte]
    Attributes
    protected
    Definition Classes
    Ipv4Address → Ipv4AddressPlatform → IpAddress
  15. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  16. def compare(that: IpAddress): Int
    Definition Classes
    IpAddress → Ordered
  17. def compareTo(that: IpAddress): Int
    Definition Classes
    Ordered → Comparable
  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def equals(other: Any): Boolean
    Definition Classes
    IpAddress → AnyRef → Any
  20. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  21. def fold[A](v4: (Ipv4Address) => A, v6: (Ipv6Address) => A): A

    Converts this address to a value of type A using the supplied functions.

    Converts this address to a value of type A using the supplied functions.

    Definition Classes
    Ipv4AddressIpAddress
  22. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. def hashCode(): Int
    Definition Classes
    IpAddress → AnyRef → Any
  24. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  25. def isMulticast: Boolean

    Returns true if this address is in the multicast range.

    Returns true if this address is in the multicast range.

    Definition Classes
    Ipv4AddressIpAddress
  26. def isSourceSpecificMulticast: Boolean

    Returns true if this address is in the source specific multicast range.

    Returns true if this address is in the source specific multicast range.

    Definition Classes
    Ipv4AddressIpAddress
  27. def masked(mask: Ipv4Address): Ipv4Address

    Applies the supplied mask to this address.

    Applies the supplied mask to this address.

    Example:
    1. scala> ipv4"192.168.29.1".masked(ipv4"255.255.0.0")
      res0: Ipv4Address = 192.168.0.0
  28. def maskedLast(mask: Ipv4Address): Ipv4Address

    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:
    1. scala> ipv4"192.168.29.1".maskedLast(ipv4"255.255.0.0")
      res0: Ipv4Address = 192.168.255.255
  29. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  30. def next: Ipv4Address

    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
    Ipv4AddressIpAddress
  31. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  33. def previous: Ipv4Address

    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
    Ipv4AddressIpAddress
  34. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  35. def toBytes: Array[Byte]

    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.

    Definition Classes
    IpAddress
  36. def toCompatV6: Ipv6Address

    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.

  37. def toInetAddress: Inet4Address

    Converts this address to a java.net.InetAddress.

    Converts this address to a java.net.InetAddress. Note this method only exists on the JVM.

    Definition Classes
    Ipv4AddressPlatform → IpAddressPlatform
  38. def toLong: Long

    Converts this address to a 32-bit unsigned integer.

  39. def toMappedV6: Ipv6Address

    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.

  40. def toString(): String

    Returns the dotted decimal representation of this address.

    Returns the dotted decimal representation of this address.

    Definition Classes
    Ipv4Address → AnyRef → Any
  41. def toUriString: String

    Converts this address to a string form that is compatible for use in a URI per RFC3986 (namely, IPv6 addresses are rendered in condensed form and surrounded by brackets).

    Converts this address to a string form that is compatible for use in a URI per RFC3986 (namely, IPv6 addresses are rendered in condensed form and surrounded by brackets).

    Definition Classes
    Ipv4AddressIpAddress
  42. def transform(v4: (Ipv4Address) => Ipv4Address, v6: (Ipv6Address) => Ipv6Address): Ipv4Address.this.type

    Maps a type-preserving function across this IP address.

    Maps a type-preserving function across this IP address.

    Definition Classes
    Ipv4AddressIpAddress
  43. def version: IpVersion

    Returns the version of this address.

    Returns the version of this address.

    Definition Classes
    IpAddress
  44. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  45. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  46. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Ipv4AddressPlatform

Inherited from IpAddress

Inherited from Serializable

Inherited from Ordered[IpAddress]

Inherited from Comparable[IpAddress]

Inherited from IpAddressPlatform

Inherited from AnyRef

Inherited from Any

Ungrouped