Sets the bits. @param holder the int data containing the bits we're interested in. @return the value of holder with the specified bits set to 1.
(final int holder)
| 278 | * @return the value of holder with the specified bits set to {@code 1}. |
| 279 | */ |
| 280 | public int set(final int holder) { |
| 281 | return (int) (holder | mask); |
| 282 | } |
| 283 | |
| 284 | /** |
| 285 | * Sets the bits. |
no outgoing calls