Returns the minimum value of type C, if it has one. The minimum value is the unique value for which Comparable#compareTo(Object) never returns a positive value for any input of type C. The default implementation throws NoSuchElementException. @return the minimum
()
| 265 | */ |
| 266 | |
| 267 | @CanIgnoreReturnValue |
| 268 | public C minValue() { |
| 269 | throw new NoSuchElementException(); |
| 270 | } |
| 271 | |
| 272 | /** |
| 273 | * Returns the maximum value of type {@code C}, if it has one. The maximum |
no outgoing calls
no test coverage detected