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

Method isSet

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

Is the field set or not? This is most commonly used for a single-bit field, which is often used to represent a boolean value; the results of using it for a multi-bit field is to determine whether any of its bits are set @param holder the int data containing the bits we're interested i

(final int holder)

Source from the content-addressed store, hash-verified

133 */
134
135 public boolean isSet(final int holder)
136 {
137 return (holder & _mask) != 0;
138 }
139
140 /**
141 * Are all of the bits set or not? This is a stricter test than

Callers 15

getHiddenMethod · 0.45
getIconicMethod · 0.45
getDisplayTabsMethod · 0.45
getDisplayFormulasMethod · 0.45
getDisplayGridlinesMethod · 0.45
getFreezePanesMethod · 0.45
getDisplayZerosMethod · 0.45
getDefaultHeaderMethod · 0.45
getArabicMethod · 0.45

Calls

no outgoing calls

Tested by 2

testIsSetMethod · 0.36
testByteMethod · 0.36