Sets the bits. @param holder the short data containing the bits we're interested in. @return the value of holder with the specified bits set to 1.
(final short holder)
| 343 | * @return the value of holder with the specified bits set to {@code 1}. |
| 344 | */ |
| 345 | public short setShort(final short holder) { |
| 346 | return (short) set(holder); |
| 347 | } |
| 348 | |
| 349 | /** |
| 350 | * Sets a boolean BitField. |