this(evpd, pageCode, false, false, allocationLength);
}
public void decode(byte[] header, ByteBuffer input) throws IOException
{
DataInputStream in = new DataInputStream(new ByteBufferInputStream(input));
int operationCode = in.readUnsignedByte();
this.EVPD = (in.readUnsignedByte() & 0x01) == 0x01;
this.pageCode = in.readUnsignedByte();
setAllocationLength(in.readUnsignedShort());