Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fromInteger (0.06 sec)

  1. guava/src/com/google/common/net/InetAddresses.java

       *
       * @param address {@code int}, the 32bit integer address to be converted
       * @return {@link Inet4Address} equivalent of the argument
       */
      public static Inet4Address fromInteger(int address) {
        return getInet4Address(Ints.toByteArray(address));
      }
    
      /**
       * Returns the {@code Inet4Address} corresponding to a given {@code BigInteger}.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/InetAddresses.java

       *
       * @param address {@code int}, the 32bit integer address to be converted
       * @return {@link Inet4Address} equivalent of the argument
       */
      public static Inet4Address fromInteger(int address) {
        return getInet4Address(Ints.toByteArray(address));
      }
    
      /**
       * Returns the {@code Inet4Address} corresponding to a given {@code BigInteger}.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top