Clears 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)
| 104 | * @return the value of holder with the specified bits cleared (set to {@code 0}). |
| 105 | */ |
| 106 | public int clear(final int holder) { |
| 107 | return (int) (holder & ~mask); |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * Clears the bits. |
no outgoing calls