Clear the bits. @param holder the byte data containing the bits we're interested in @return the value of holder with the specified bits cleared (set to 0)
(final byte holder)
| 226 | */ |
| 227 | |
| 228 | public byte clearByte(final byte holder) |
| 229 | { |
| 230 | return ( byte ) clear(holder); |
| 231 | } |
| 232 | |
| 233 | /** |
| 234 | * Set the bits. |
no test coverage detected