check a key for validity (non-null and implements Comparable) @param key the key to be checked @exception NullPointerException if key is null @exception ClassCastException if key is not Comparable
(Object key)
| 1219 | * @exception ClassCastException if key is not Comparable |
| 1220 | */ |
| 1221 | private static void checkKey(Object key) |
| 1222 | { |
| 1223 | checkNonNullComparable(key, _KEY); |
| 1224 | } |
| 1225 | |
| 1226 | /** |
| 1227 | * check a value for validity (non-null and implements Comparable) |
no test coverage detected