object Ipv4Address extends Ipv4AddressCompanionPlatform with Serializable

Source
Host.scala
Linear Supertypes
Serializable, Ipv4AddressCompanionPlatform, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Ipv4Address
  2. Serializable
  3. Ipv4AddressCompanionPlatform
  4. AnyRef
  5. 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. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val MulticastRangeEnd: Ipv4Address

    Last IP address in the IPv4 multicast range.

  5. val MulticastRangeStart: Ipv4Address

    First IP address in the IPv4 multicast range.

  6. val SourceSpecificMulticastRangeEnd: Ipv4Address

    Last IP address in the IPv4 source specific multicast range.

  7. val SourceSpecificMulticastRangeStart: Ipv4Address

    First IP address in the IPv4 source specific multicast range.

  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  13. def fromBytes(a: Int, b: Int, c: Int, d: Int): Ipv4Address

    Constructs an address from the specified 4 bytes.

    Constructs an address from the specified 4 bytes.

    Each byte is represented as an Int to avoid having to manually call .toByte on each value -- the toByte call is done inside this function.

  14. def fromBytes(bytes: Array[Byte]): Option[Ipv4Address]

    Constructs an IPv4 address from a 4-element byte array.

    Constructs an IPv4 address from a 4-element byte array. Returns Some when array is exactly 4-bytes and None otherwise.

  15. def fromLong(value: Long): Ipv4Address

    Constructs an IPv4 address from a Long, using the lower 32-bits.

  16. def fromString(value: String): Option[Ipv4Address]

    Parses an IPv4 address from a dotted-decimal string, returning None if the string is not a valid IPv4 address.

  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. def mask(bits: Int): Ipv4Address

    Computes a mask by setting the first / left-most n bits high.

    Computes a mask by setting the first / left-most n bits high.

    Example:
    1. scala> Ipv4Address.mask(16)
      res0: Ipv4Address = 255.255.0.0
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Serializable

Inherited from Ipv4AddressCompanionPlatform

Inherited from AnyRef

Inherited from Any

Ungrouped