object Ipv6Address extends Serializable

Source
IpAddress.scala
Linear Supertypes
Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Ipv6Address
  2. Serializable
  3. AnyRef
  4. 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: Ipv6Address

    Last IP address in the IPv6 multicast range.

  5. val MulticastRangeStart: Ipv6Address

    First IP address in the IPv6 multicast range.

  6. val SourceSpecificMulticastRangeEnd: Ipv6Address

    Last IP address in the IPv6 source specific multicast range.

  7. val SourceSpecificMulticastRangeStart: Ipv6Address

    First IP address in the IPv6 source specific multicast range.

  8. def apply(value: String): Option[Ipv6Address]

    Parses an IPv6 address from a string in RFC4291 notation, returning None if the string is not a valid IPv6 address.

  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  14. def fromBigInt(value: BigInt): Ipv6Address

    Constructs an IPv6 address from a BigInt, using the lower 128-bits.

  15. def fromBytes(b0: Int, b1: Int, b2: Int, b3: Int, b4: Int, b5: Int, b6: Int, b7: Int, b8: Int, b9: Int, b10: Int, b11: Int, b12: Int, b13: Int, b14: Int, b15: Int): Ipv6Address

    Constructs an address from the specified 16 bytes.

    Constructs an address from the specified 16 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.

  16. def fromBytes(bytes: Array[Byte]): Option[Ipv6Address]

    Constructs an IPv6 address from a 16-element byte array.

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

  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): Ipv6Address

    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> Ipv6Address.mask(32)
      res0: Ipv6Address = ffff:ffff::
  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 AnyRef

Inherited from Any

Ungrouped