MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / hashCode

Method hashCode

CodenameOne/src/com/codename1/ui/Stroke.java:269–277  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

267
268
269 @Override
270 public int hashCode() {
271 int hash = 7;
272 hash = 59 * hash + this.joinStyle;
273 hash = 59 * hash + this.capStyle;
274 hash = 59 * hash + Float.floatToIntBits(this.lineWidth);
275 hash = 59 * hash + Float.floatToIntBits(this.miterLimit);
276 return hash;
277 }
278
279
280}

Callers 1

testStrokeHashCodeMethod · 0.95

Calls 1

floatToIntBitsMethod · 0.95

Tested by 1

testStrokeHashCodeMethod · 0.76