(Integer value)
| 142 | } |
| 143 | |
| 144 | public byte[] getByteArray(Integer value) { |
| 145 | int byteAllocated = getBytesAllocated(); |
| 146 | ByteBuffer buff = ByteBuffer.allocate(byteAllocated); |
| 147 | buff.putInt(value); |
| 148 | return buff.array(); |
| 149 | } |
| 150 | |
| 151 | @Override |
| 152 | protected Integer zero() { |
nothing calls this directly
no test coverage detected