Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/java-native-access/jna
/ hashCode
Method
hashCode
src/com/sun/jna/WString.java:45–48 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
43
return
(o instanceof WString) && toString().equals(o.toString());
44
}
45
@Override
46
public
int
hashCode() {
47
return
toString().hashCode();
48
}
49
@Override
50
public
int
compareTo(Object o) {
51
return
toString().compareTo(o.toString());
Callers
nothing calls this directly
Calls
1
toString
Method · 0.95
Tested by
no test coverage detected