(Long value)
| 147 | } |
| 148 | |
| 149 | public byte[] getByteArray(Long value) { |
| 150 | int byteAllocated = getBytesAllocated(); |
| 151 | ByteBuffer buff = ByteBuffer.allocate(byteAllocated); |
| 152 | buff.putLong(value); |
| 153 | return buff.array(); |
| 154 | } |
| 155 | |
| 156 | @Override |
| 157 | protected Long zero() { |
nothing calls this directly
no test coverage detected