Set 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)
| 268 | */ |
| 269 | |
| 270 | public byte setByte(final byte holder) |
| 271 | { |
| 272 | return ( byte ) set(holder); |
| 273 | } |
| 274 | |
| 275 | /** |
| 276 | * Set a boolean BitField |
no test coverage detected