(Double value)
| 312 | } |
| 313 | |
| 314 | @Override |
| 315 | public byte[] getByteArray(Double value) { |
| 316 | int byteAllocated = getBytesAllocated(); |
| 317 | ByteBuffer buff = ByteBuffer.allocate(byteAllocated); |
| 318 | buff.putDouble(value); |
| 319 | return buff.array(); |
| 320 | } |
| 321 | |
| 322 | @Override |
| 323 | public Class<Double> getStorageClazz() { |
nothing calls this directly
no test coverage detected