Sets the bits. @param holder the byte data containing the bits we're interested in @return the value of holder with the specified bits set to 1
(final byte holder)
| 322 | * @return the value of holder with the specified bits set to {@code 1} |
| 323 | */ |
| 324 | public byte setByte(final byte holder) { |
| 325 | return (byte) set(holder); |
| 326 | } |
| 327 | |
| 328 | /** |
| 329 | * Sets a boolean BitField. |