Returns an Inet4Address having the integer value specified by the argument. @param address int, the 32bit integer address to be converted @return Inet4Address equivalent of the argument
(int address)
| 926 | |
| 927 | |
| 928 | public static Inet4Address fromInteger(int address) { |
| 929 | return getInet4Address(Ints.toByteArray(address)); |
| 930 | } |
| 931 | |
| 932 | /** |
| 933 | * Returns an address from a <b>little-endian ordered</b> byte array (the opposite of what |
nothing calls this directly
no test coverage detected