public interface X_C_TYPE extends Buffer
| Modifier and Type | Method and Description |
|---|---|
byte |
getByte(String key) |
byte[] |
getByteArray(String key) |
byte[][] |
getByteArrayArray(String key) |
double |
getDouble(String key) |
double[] |
getDoubleArray(String key) |
float |
getFloat(String key) |
float[] |
getFloatArray(String key) |
int |
getInt(String key) |
int[] |
getIntArray(String key) |
long |
getLong(String key) |
long[] |
getLongArray(String key) |
short |
getShort(String key)
Get the short value identified by the key.
|
short[] |
getShortArray(String key) |
void |
setByte(String key,
byte value) |
void |
setByteArray(String key,
byte[] value) |
void |
setByteArrayArray(String key,
byte[][] value) |
void |
setDouble(String key,
double value) |
void |
setDoubleArray(String key,
double[] value) |
void |
setFloat(String key,
float value) |
void |
setFloatArray(String key,
float[] value) |
void |
setInt(String key,
int value) |
void |
setIntArray(String key,
int[] value) |
void |
setLong(String key,
long value) |
void |
setLongArray(String key,
long[] value) |
void |
setShort(String key,
short value)
Set the short value
|
void |
setShortArray(String key,
short[] value) |
getLen, getSubtype, getTypeshort getShort(String key) throws ConnectionException
key - The key to useConnectionException - In case the key is not part of the structure.void setShort(String key, short value) throws ConnectionException
key - The value to setvalue - The value to useConnectionException - In case the key is unknown.long getLong(String key) throws ConnectionException
ConnectionExceptionvoid setLong(String key, long value) throws ConnectionException
ConnectionExceptionbyte getByte(String key) throws ConnectionException
ConnectionExceptionvoid setByte(String key, byte value) throws ConnectionException
ConnectionExceptionshort[] getShortArray(String key) throws ConnectionException
ConnectionExceptionvoid setShortArray(String key, short[] value) throws ConnectionException
ConnectionExceptionlong[] getLongArray(String key) throws ConnectionException
ConnectionExceptionvoid setLongArray(String key, long[] value) throws ConnectionException
ConnectionExceptionbyte[] getByteArray(String key) throws ConnectionException
ConnectionExceptionvoid setByteArray(String key, byte[] value) throws ConnectionException
ConnectionExceptionint getInt(String key) throws ConnectionException
ConnectionExceptionvoid setInt(String key, int value) throws ConnectionException
ConnectionExceptionfloat getFloat(String key) throws ConnectionException
ConnectionExceptionvoid setFloat(String key, float value) throws ConnectionException
ConnectionExceptiondouble getDouble(String key) throws ConnectionException
ConnectionExceptionvoid setDouble(String key, double value) throws ConnectionException
ConnectionExceptionint[] getIntArray(String key) throws ConnectionException
ConnectionExceptionvoid setIntArray(String key, int[] value) throws ConnectionException
ConnectionExceptionfloat[] getFloatArray(String key) throws ConnectionException
ConnectionExceptionvoid setFloatArray(String key, float[] value) throws ConnectionException
ConnectionExceptiondouble[] getDoubleArray(String key) throws ConnectionException
ConnectionExceptionvoid setDoubleArray(String key, double[] value) throws ConnectionException
ConnectionExceptionbyte[][] getByteArrayArray(String key) throws ConnectionException
ConnectionExceptionvoid setByteArrayArray(String key, byte[][] value) throws ConnectionException
ConnectionExceptionCopyright © 2017 JBoss by Red Hat. All rights reserved.