check a value for validity (non-null and implements Comparable) @param value the value to be checked @exception NullPointerException if value is null @exception ClassCastException if value is not Comparable
(Object value)
| 1232 | * @exception ClassCastException if value is not Comparable |
| 1233 | */ |
| 1234 | private static void checkValue(Object value) |
| 1235 | { |
| 1236 | checkNonNullComparable(value, _VALUE); |
| 1237 | } |
| 1238 | |
| 1239 | /** |
| 1240 | * check a key and a value for validity (non-null and implements |
no test coverage detected