public class IntercomCommunicationsParameters
extends java.lang.Object
implements java.io.Serializable
| Modifier and Type | Field and Description |
|---|---|
protected java.util.List<OneByteChunk> |
parameterValues
variable length variablelist of data parameters
|
protected int |
recordLength
length of record-specifid field, in octets
|
protected int |
recordType
Type of intercom parameters record
|
| Constructor and Description |
|---|
IntercomCommunicationsParameters()
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 |
int |
getMarshalledSize() |
java.util.List<OneByteChunk> |
getParameterValues() |
int |
getRecordLength() |
int |
getRecordType() |
void |
marshal(java.nio.ByteBuffer buff)
Packs a Pdu into the ByteBuffer.
|
void |
marshal(java.io.DataOutputStream dos) |
void |
setParameterValues(java.util.List<OneByteChunk> pParameterValues) |
void |
setRecordLength(int pRecordLength)
Note that setting this value will not change the marshalled value.
|
void |
setRecordType(int pRecordType) |
void |
unmarshal(java.nio.ByteBuffer buff)
Unpacks a Pdu from the underlying data.
|
void |
unmarshal(java.io.DataInputStream dis) |
protected int recordType
protected int recordLength
protected java.util.List<OneByteChunk> parameterValues
public IntercomCommunicationsParameters()
public int getMarshalledSize()
public void setRecordType(int pRecordType)
public int getRecordType()
public int getRecordLength()
public void setRecordLength(int pRecordLength)
public void setParameterValues(java.util.List<OneByteChunk> pParameterValues)
public java.util.List<OneByteChunk> getParameterValues()
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 onlyByteBufferpublic void unmarshal(java.nio.ByteBuffer buff)
buff - The ByteBuffer at the position to begin readingjava.nio.BufferUnderflowException - if buff is too smallByteBufferpublic boolean equals(java.lang.Object obj)
equals in class java.lang.Objectpublic boolean equalsImpl(java.lang.Object obj)
this and the supplied objectobj - the object to compare to