MCPcopy Create free account
hub / github.com/ReadyTalk/avian / toHexString

Method toHexString

classpath/java/lang/Integer.java:61–63  ·  view source on GitHub ↗
(int v)

Source from the content-addressed store, hash-verified

59 }
60
61 public static String toHexString(int v) {
62 return Long.toString(((long) v) & 0xFFFFFFFFL, 16);
63 }
64
65 public static String toOctalString(int v) {
66 return Long.toString(((long) v) & 0xFFFFFFFFL, 8);

Callers 7

hexdumpMethod · 0.95
ObjectInputStreamMethod · 0.95
rawBlockDataByteMethod · 0.95
expectTokenMethod · 0.95
readObjectMethod · 0.95
classDescMethod · 0.95
toStringMethod · 0.95

Calls 1

toStringMethod · 0.95

Tested by 1

hexdumpMethod · 0.76