JVMAModel¶
JVMAプロトコル に対応するモデルクラスです。
getPacketType¶
パケット種類を返します。
public int getPacketType()
戻り値¶
型 |
説明 |
int |
パケット種類 |
サンプルコード¶
int packetType = jvmaModel.getPacketType();
getAckStatus¶
ACK/NAK の応答ステータスを返します。
public int getAckStatus()
戻り値¶
型 |
説明 |
int |
応答ステータス |
サンプルコード¶
int ackStatus = jvmaModel.getAckStatus();
getTextType¶
テキストタイプを返します。
public int getTextType()
戻り値¶
型 |
説明 |
int |
テキストタイプ |
サンプルコード¶
int textType = jvmaModel.getTextType();
getRecords¶
レコード集合を返します。
public Map<JVMADataId, List<String>> getRecords()
戻り値¶
型 |
説明 |
Map<JVMADataId, List |
レコード集合 |
サンプルコード¶
Map<JVMADataId, List<String>> records = jvmaModel.getRecords();