Class/Object

com.comcast.ip4s

Ipv4Address

Related Docs: object Ipv4Address | package ip4s

Permalink

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, Serializable, IpAddressPlatform, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Ipv4Address
  2. Ipv4AddressPlatform
  3. IpAddress
  4. Serializable
  5. Serializable
  6. IpAddressPlatform
  7. AnyRef
  8. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Ipv4Address to any2stringadd[Ipv4Address] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Ipv4Address, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Ipv4Address to ArrowAssoc[Ipv4Address] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. def /(prefixBits: Int): Cidr[Ipv4Address.this.type]

    Permalink

    Constructs a Cidr address from this address.

    Constructs a Cidr address from this address.

    Definition Classes
    IpAddress
  6. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def asIpv4: Option[Ipv4Address]

    Permalink

    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
  9. def asIpv6: Option[Ipv6Address]

    Permalink

    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
  10. def asMulticast: Option[Multicast[Ipv4Address.this.type]]

    Permalink

    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
  11. def asSourceSpecificMulticast: Option[SourceSpecificMulticast[Ipv4Address.this.type]]

    Permalink

    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
  12. val bytes: Array[Byte]

    Permalink
    Attributes
    protected
    Definition Classes
    Ipv4AddressIpAddress
  13. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def ensuring(cond: (Ipv4Address) ⇒ Boolean, msg: ⇒ Any): Ipv4Address

    Permalink
    Implicit information
    This member is added by an implicit conversion from Ipv4Address to Ensuring[Ipv4Address] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: (Ipv4Address) ⇒ Boolean): Ipv4Address

    Permalink
    Implicit information
    This member is added by an implicit conversion from Ipv4Address to Ensuring[Ipv4Address] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean, msg: ⇒ Any): Ipv4Address

    Permalink
    Implicit information
    This member is added by an implicit conversion from Ipv4Address to Ensuring[Ipv4Address] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean): Ipv4Address

    Permalink
    Implicit information
    This member is added by an implicit conversion from Ipv4Address to Ensuring[Ipv4Address] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  19. def equals(other: Any): Boolean

    Permalink
    Definition Classes
    IpAddress → AnyRef → Any
  20. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. def fold[A](v4: (Ipv4Address) ⇒ A, v6: (Ipv6Address) ⇒ A): A

    Permalink

    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. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Ipv4Address to StringFormat[Ipv4Address] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  23. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  24. def hashCode(): Int

    Permalink
    Definition Classes
    IpAddress → AnyRef → Any
  25. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  26. def isMulticast: Boolean

    Permalink

    Returns true if this address is in the multicast range.

    Returns true if this address is in the multicast range.

    Definition Classes
    Ipv4AddressIpAddress
  27. def isSourceSpecificMulticast: Boolean

    Permalink

    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
  28. def masked(mask: Ipv4Address): Ipv4Address

    Permalink

    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
  29. def maskedLast(mask: Ipv4Address): Ipv4Address

    Permalink

    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
  30. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  31. def next: Ipv4Address

    Permalink

    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
  32. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  33. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  34. def previous: Ipv4Address

    Permalink

    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
  35. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  36. def toBytes: Array[Byte]

    Permalink

    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
  37. def toCompatV6: Ipv6Address

    Permalink

    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.

  38. def toLong: Long

    Permalink

    Converts this address to a 32-bit unsigned integer.

  39. def toMappedV6: Ipv6Address

    Permalink

    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

    Permalink

    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

    Permalink

    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

    Permalink

    Maps a type-preserving function across this IP address.

    Maps a type-preserving function across this IP address.

    Definition Classes
    Ipv4AddressIpAddress
  43. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. def [B](y: B): (Ipv4Address, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Ipv4Address to ArrowAssoc[Ipv4Address] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Ipv4AddressPlatform

Inherited from IpAddress

Inherited from Serializable

Inherited from Serializable

Inherited from IpAddressPlatform

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from Ipv4Address to any2stringadd[Ipv4Address]

Inherited by implicit conversion StringFormat from Ipv4Address to StringFormat[Ipv4Address]

Inherited by implicit conversion Ensuring from Ipv4Address to Ensuring[Ipv4Address]

Inherited by implicit conversion ArrowAssoc from Ipv4Address to ArrowAssoc[Ipv4Address]

Ungrouped