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