Checks if this is one of the specified candidates. @param candidates candidates @return result of check
(final Calc... candidates)
| 448 | * @return result of check |
| 449 | */ |
| 450 | public boolean oneOf(final Calc... candidates) { |
| 451 | return Enums.oneOf(this, candidates); |
| 452 | } |
| 453 | |
| 454 | /** |
| 455 | * Returns the numeric type with the highest precedence. |