Returns the maximum value of type C, if it has one. The maximum value is the unique value for which Comparable#compareTo(Object) never returns a negative value for any input of type C. The default implementation throws NoSuchElementException. @return the maximum
()
| 282 | */ |
| 283 | |
| 284 | @CanIgnoreReturnValue |
| 285 | public C maxValue() { |
| 286 | throw new NoSuchElementException(); |
| 287 | } |
| 288 | } |
no outgoing calls
no test coverage detected