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

Method containsValue

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

Returns true if this map maps one or more keys to the specified value. @param value value whose presence in this map is to be tested. @return true if this map maps one or more keys to the specified value.

(Object value)

Source from the content-addressed store, hash-verified

1378 * value.
1379 */
1380 public boolean containsValue(Object value)
1381 {
1382 checkValue(value);
1383 return lookup(( Comparable ) value, _VALUE) != null;
1384 }
1385
1386 /**
1387 * Returns the value to which this map maps the specified

Callers 9

containsMethod · 0.95
testContainsValueMethod · 0.95
testClearMethod · 0.95
testKeySetMethod · 0.95
testValuesMethod · 0.95
testKeySetByValueMethod · 0.95
testValuesByValueMethod · 0.95
putNumberFormatMethod · 0.45
addContentTypeMethod · 0.45

Calls 2

checkValueMethod · 0.95
lookupMethod · 0.95

Tested by 6

testContainsValueMethod · 0.76
testClearMethod · 0.76
testKeySetMethod · 0.76
testValuesMethod · 0.76
testKeySetByValueMethod · 0.76
testValuesByValueMethod · 0.76