public class StorageFuel
extends java.lang.Object
implements java.io.Serializable
Modifier and Type | Field and Description |
---|---|
protected short |
fuelLocation
Location of fuel as related to entity.
|
protected short |
fuelMeasurementUnits
Units in which the fuel is measured
|
protected long |
fuelQuantity
Fuel quantity, units specified by next field
|
protected short |
fuelType
Type of fuel
|
protected short |
padding
padding
|
Constructor and Description |
---|
StorageFuel()
Constructor
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
boolean |
equalsImpl(java.lang.Object obj)
Compare all fields that contribute to the state, ignoring
transient and static fields, for
this and the supplied object |
short |
getFuelLocation() |
short |
getFuelMeasurementUnits() |
long |
getFuelQuantity() |
short |
getFuelType() |
int |
getMarshalledSize() |
short |
getPadding() |
void |
marshal(java.nio.ByteBuffer buff)
Packs a Pdu into the ByteBuffer.
|
void |
marshal(java.io.DataOutputStream dos) |
void |
setFuelLocation(short pFuelLocation) |
void |
setFuelMeasurementUnits(short pFuelMeasurementUnits) |
void |
setFuelQuantity(long pFuelQuantity) |
void |
setFuelType(short pFuelType) |
void |
setPadding(short pPadding) |
void |
unmarshal(java.nio.ByteBuffer buff)
Unpacks a Pdu from the underlying data.
|
void |
unmarshal(java.io.DataInputStream dis) |
protected long fuelQuantity
protected short fuelMeasurementUnits
protected short fuelType
protected short fuelLocation
protected short padding
public int getMarshalledSize()
public void setFuelQuantity(long pFuelQuantity)
public long getFuelQuantity()
public void setFuelMeasurementUnits(short pFuelMeasurementUnits)
public short getFuelMeasurementUnits()
public void setFuelType(short pFuelType)
public short getFuelType()
public void setFuelLocation(short pFuelLocation)
public short getFuelLocation()
public void setPadding(short pPadding)
public short getPadding()
public void marshal(java.io.DataOutputStream dos)
public void unmarshal(java.io.DataInputStream dis)
public void marshal(java.nio.ByteBuffer buff)
buff
- The ByteBuffer at the position to begin writingjava.nio.BufferOverflowException
- if buff is too smalljava.nio.ReadOnlyBufferException
- if buff is read onlyByteBuffer
public void unmarshal(java.nio.ByteBuffer buff)
buff
- The ByteBuffer at the position to begin readingjava.nio.BufferUnderflowException
- if buff is too smallByteBuffer
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public boolean equalsImpl(java.lang.Object obj)
this
and the supplied objectobj
- the object to compare to