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

Method clear

src/java/org/apache/poi/util/BitField.java:198–201  ·  view source on GitHub ↗

Clear the bits. @param holder the int data containing the bits we're interested in @return the value of holder with the specified bits cleared (set to 0)

(final int holder)

Source from the content-addressed store, hash-verified

196 */
197
198 public int clear(final int holder)
199 {
200 return holder & ~_mask;
201 }
202
203 /**
204 * Clear the bits.

Callers 3

clearShortMethod · 0.95
clearByteMethod · 0.95
setBooleanMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected