grizzled.net

IPAddress

object IPAddress

Companion object to IPAddress class.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. IPAddress
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

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. final val Localhost: Either[String, IPAddress]

    Singleton IPAddress for the local loop address.

  5. def allForName(hostname: String): Either[String, List[IPAddress]]

    Get a list of all IPAddress objects for a given host name, based on whatever name service is configured for the running system.

    Get a list of all IPAddress objects for a given host name, based on whatever name service is configured for the running system.

    The host name can either be a machine name, such as "www.clapper.org", or a textual representation of its IP address. If a literal IP address is supplied, only the validity of the address format is checked.

    If the host is null, then this method return an IPAddress representing an address of the loopback interfaced. See RFC 3330 section 2 and RFC 2373 section 2.5.3.

    This method corresponds to the getAllByName() method in the java.net.InetAddress class.

    hostname

    the host name

    returns

    a Right containing the list of resolved IP addresses, or Left(error) on error.

  6. def apply(host: String): Either[String, IPAddress]

    Create an IPAddress, given a host name.

    Create an IPAddress, given a host name.

    host

    the host name

    returns

    the IPAddress in a Right, on success; Left(error) on error.

  7. def apply(address: List[Byte]): Either[String, IPAddress]

    Create an IPAddress, given a list of bytes representing the address

    Create an IPAddress, given a list of bytes representing the address

    - If the array has fewer than four values, it is assumed to be an IPv4 address, and it will be padded with 0s to 4 bytes. - If the array has between four and 16 values, it is assumed to be an IPv6 address, and it will be padded with 0s to 16 bytes. - Anything else will cause an IllegalArgumentException to be thrown. Example of use:

    val ip = IPAddress(List(192, 168, 1, 100))
    address

    the list of address values

    returns

    the IPAddress in a Right, on success; Left(error) on error.

  8. def apply(addr: Int*): Either[String, IPAddress]

    Create an IPAddress, given 1 to 16 integer arguments.

    Create an IPAddress, given 1 to 16 integer arguments. The integers will be truncated to 8-bit bytes.

    - If the array has fewer than four values, it is assumed to be an IPv4 address, and it will be padded with 0s to 4 bytes. - If the array has between four and 16 values, it is assumed to be an IPv6 address, and it will be padded with 0s to 16 bytes. - Anything else will cause an IllegalArgumentException to be thrown.

    Example of use:

    val ip = IPAddress(Array(192, 168, 1, 100))
    addr

    the bytes (as integers) of the address

    returns

    the IPAddress in a Right, on success; Left(error) on error.

  9. def apply(addr: Array[Int]): Either[String, IPAddress]

    Create an IPAddress, given an array of integers representing the address.

    Create an IPAddress, given an array of integers representing the address. The array must contain between 1 and 16 integer values. The integers will be truncated to 8-bit bytes.

    - If the array has fewer than four values, it is assumed to be an IPv4 address, and it will be padded with 0s to 4 bytes. - If the array has between four and 16 values, it is assumed to be an IPv6 address, and it will be padded with 0s to 16 bytes. - Anything else will cause an IllegalArgumentException to be thrown.

    Example of use:

    val ip = IPAddress(Array(192, 168, 1, 100))
    addr

    the address

    returns

    the corresponding IPAddress object.

  10. def apply(addr: Array[Byte]): Either[String, IPAddress]

    Create an IPAddress, given an array of bytes representing the address.

    Create an IPAddress, given an array of bytes representing the address. The array must contain between 1 and 16 byte values.

    - If the array has fewer than four values, it is assumed to be an IPv4 address, and it will be padded with 0s to 4 bytes. - If the array has between four and 16 values, it is assumed to be an IPv6 address, and it will be padded with 0s to 16 bytes. - Anything else will cause an IllegalArgumentException to be thrown.

    addr

    the address

    returns

    the IPAddress in a Right, on success; Left(error) on error.

  11. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  12. def clone(): AnyRef

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

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]

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

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

    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

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

    Definition Classes
    AnyRef
  23. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped