public class IntMatrixTokenHandler extends java.lang.Object implements TokenHandler<IntMatrixToken>
Constructor and Description |
---|
IntMatrixTokenHandler() |
Modifier and Type | Method and Description |
---|---|
void |
convertToBytes(IntMatrixToken token,
java.io.DataOutputStream outputStream)
Write the IntMatrixToken to a byte array.
|
IntMatrixToken |
convertToToken(java.io.DataInputStream inputStream,
java.lang.Class<? extends IntMatrixToken> tokenType)
Read an IntMatrixToken from the input stream.
|
public void convertToBytes(IntMatrixToken token, java.io.DataOutputStream outputStream) throws java.io.IOException, IllegalActionException
convertToBytes
in interface TokenHandler<IntMatrixToken>
token
- Token to be converted to bytes.outputStream
- The stream to write to.java.io.IOException
- If the stream cannot be written.IllegalActionException
- Not thrown in this class.TokenHandler.convertToBytes(ptolemy.data.Token, java.io.DataOutputStream)
public IntMatrixToken convertToToken(java.io.DataInputStream inputStream, java.lang.Class<? extends IntMatrixToken> tokenType) throws java.io.IOException, IllegalActionException
convertToToken
in interface TokenHandler<IntMatrixToken>
inputStream
- The stream to read from.tokenType
- The type of token to be parsed.java.io.IOException
- If the stream cannot be read.IllegalActionException
- Not thrown in this class.TokenHandler.convertToToken(java.io.DataInputStream, Class)