MCPcopy Create free account
hub / github.com/apache/poi / checkValue

Method checkValue

src/java/org/apache/poi/util/BinaryTree.java:1234–1237  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 2

checkKeyAndValueMethod · 0.95
containsValueMethod · 0.95

Calls 1

Tested by

no test coverage detected