Clear the bits. @param holder the short data containing the bits we're interested in @return the value of holder with the specified bits cleared (set to 0)
(final short holder)
| 211 | */ |
| 212 | |
| 213 | public short clearShort(final short holder) |
| 214 | { |
| 215 | return ( short ) clear(holder); |
| 216 | } |
| 217 | |
| 218 | /** |
| 219 | * Clear the bits. |