Object/Class

com.comcast.ip4s

Ipv6Address

Related Docs: class Ipv6Address | package ip4s

Permalink

object Ipv6Address extends Serializable

Source
IpAddress.scala
Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Ipv6Address
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  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. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. val MulticastRangeEnd: Ipv6Address

    Permalink

    Last IP address in the IPv6 multicast range.

  5. val MulticastRangeStart: Ipv6Address

    Permalink

    First IP address in the IPv6 multicast range.

  6. val SourceSpecificMulticastRangeEnd: Ipv6Address

    Permalink

    Last IP address in the IPv6 source specific multicast range.

  7. val SourceSpecificMulticastRangeStart: Ipv6Address

    Permalink

    First IP address in the IPv6 source specific multicast range.

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

    Permalink

    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

    Permalink
    Definition Classes
    Any
  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def fromBigInt(value: BigInt): Ipv6Address

    Permalink

    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

    Permalink

    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]

    Permalink

    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[_]

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

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

    Permalink
    Definition Classes
    Any
  20. def mask(bits: Int): Ipv6Address

    Permalink

    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

    Permalink
    Definition Classes
    AnyRef
  22. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  25. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped