Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
hexdump
Method · 0.95
ObjectInputStream
Method · 0.95
rawBlockDataByte
Method · 0.95
expectToken
Method · 0.95
readObject
Method · 0.95
classDesc
Method · 0.95
toString
Method · 0.95
Calls
1
toString
Method · 0.95
Tested by
1
hexdump
Method · 0.76