(Double value)
| 144 | } |
| 145 | |
| 146 | public byte[] getByteArray(Double value) { |
| 147 | int byteAllocated = getBytesAllocated(); |
| 148 | ByteBuffer buff = ByteBuffer.allocate(byteAllocated); |
| 149 | buff.putDouble(value); |
| 150 | return buff.array(); |
| 151 | } |
| 152 | |
| 153 | public Class<Double> getStorageClazz() { |
| 154 | return Double.class; |
nothing calls this directly
no test coverage detected