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)
| 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 |
no outgoing calls