Return the same value as Boolean#hashCode() . @param bool the boolean to get a hashcode @return the same value as Boolean#hashCode(). @see Boolean#hashCode()
(boolean bool)
| 567 | * @see Boolean#hashCode() |
| 568 | */ |
| 569 | public static int hashCode(boolean bool) { |
| 570 | return bool ? 1231 : 1237; |
| 571 | } |
| 572 | |
| 573 | /** |
| 574 | * Return the same value as <code>{@link Double#hashCode()}</code>. |