Tests whether all of the bits are set or not. This is a stricter test than #isSet(int), in that all of the bits in a multi-bit set must be set for this method to return true. @param holder the int data containing the bits we're interested in. @return true if all of
(final int holder)
| 225 | * @return {@code true} if all of the bits are set, else {@code false}. |
| 226 | */ |
| 227 | public boolean isAllSet(final int holder) { |
| 228 | return (holder & mask) == mask; |
| 229 | } |
| 230 | |
| 231 | /** |
| 232 | * Tests whether all of the bits are set or not. |
no outgoing calls