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

Method setByteBoolean

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

Set a boolean BitField @param holder the byte data containing the bits we're interested in @param flag indicating whether to set or clear the bits @return the value of holder with the specified bits set or cleared

(final byte holder, final boolean flag)

Source from the content-addressed store, hash-verified

318 */
319
320 public byte setByteBoolean(final byte holder, final boolean flag)
321 {
322 return flag ? setByte(holder)
323 : clearByte(holder);
324 }
325} // end public class BitField
326

Callers 9

setAutobreaksMethod · 0.80
setDialogMethod · 0.80
setRowSumsBelowMethod · 0.80
setRowSumsRightMethod · 0.80
setFitToPageMethod · 0.80
setDisplayGutsMethod · 0.80
setAlternateFormulaMethod · 0.80
testByteMethod · 0.80

Calls 2

setByteMethod · 0.95
clearByteMethod · 0.95

Tested by 1

testByteMethod · 0.64