- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for fromInteger (0.1 sec)
-
guava-tests/test/com/google/common/net/InetAddressesTest.java
assertThat(InetAddresses.coerceToInteger(InetAddresses.forString("127.0.0.1"))) .isEqualTo(0x7f000001); } public void testFromInteger() { assertThat(InetAddresses.fromInteger(0x7f000001)) .isEqualTo(InetAddresses.forString("127.0.0.1")); } public void testFromLittleEndianByteArray() throws UnknownHostException { assertEquals(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 24 16:44:05 UTC 2024 - 35.3K bytes - Viewed (0) -
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) -
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)