List of usage examples for java.lang Number hashCode
@HotSpotIntrinsicCandidate public native int hashCode();
From source file:org.jasig.ssp.model.AbstractAuditable.java
protected final int hashField(final String name, final Number value) { return (value == null ? name.hashCode() : value.hashCode()); }