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: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final val Localhost: Try[IPAddress]

    Singleton IPAddress for the local loop address.

  7. def allForName(hostname: String): Try[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 Success containing the list of resolved IP addresses, or Failure(exception) on error.

  8. def apply(address: BigInt): Try[IPAddress]

    Create an IPAddress from a number.

    Create an IPAddress from a number.

    address

    the numeric IP address

    returns

    the IPAddress in a Success, or Failure(exception) on error.

  9. def apply(host: String): Try[IPAddress]

    Create an IPAddress, given a host name.

    Create an IPAddress, given a host name. Note that this function may do a DNS lookup if the host name is not an address string. To parse _just_ an address string, ignoring host names, use parseAddress().

    host

    the host name or address string

    returns

    the IPAddress in a Success, or Failure(exception) on error.

  10. def apply(inetAddress: InetAddress): IPAddress

    Create an IPAddress from a java.net.InetAddress.

    Create an IPAddress from a java.net.InetAddress. You can also use the implicit conversions in grizzled.net.Implicits.

    inetAddress

    the InetAddress

    returns

    the IPAddress

  11. def apply(address: List[Byte]): Try[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 Success, or Failure(exception) on error.

  12. def apply(addr: Int*): Try[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 Success, or Failure(exception) on error.

  13. def apply(addr: Array[Int]): Try[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 IPAddress in a Success, or Failure(exception) on error.

  14. def apply(addr: Array[Byte]): Try[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 Success, or Failure(exception) on error.

  15. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  16. def clone(): AnyRef

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

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

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  26. def parseAddress(addressString: String): Try[IPAddress]

    Parse an address string (IPv4 or IPv6) only.

    Parse an address string (IPv4 or IPv6) only. Host names will result in an error return value. NOTE: This function strips any IPv6 interface names, if they exist. That is, an address such as "fe80::cab3:73ff:fe19:c600%en5" is parsed as "fe80::cab3:73ff:fe19:c600".

    addressString

    The address string

    returns

    the IPAddress in a Success, or Failure(exception) on error.

  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  28. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped