| java.lang.Object org.mockejb.jms.PrimitiveMap
PrimitiveMap | class PrimitiveMap (Code) | | Map that sotre name-value pairs, where the values are null or
instances of String, Boolean, Byte, Character, Short, Integer, Long, Float,
Double or byte[].
Conversion between types is supported as specified in
javax.jms.StreamMessage
author: Dimitar Gospodinov |
Method Summary | |
public void | clear() | public boolean | containsKey(String key) | public boolean | getBoolean(String name) | public byte | getByte(String name) | public byte[] | getBytes(String name) | public char | getChar(String name) | public double | getDouble(String name) | public float | getFloat(String name) | public int | getInt(String name) | public long | getLong(String name) | public Enumeration | getNames() | public Object | getObject(String name) | public short | getShort(String name) | public String | getString(String name) | public void | setBoolean(String name, boolean value) | public void | setByte(String name, byte value) | public void | setBytes(String name, byte[] value) | public void | setChar(String name, char value) | public void | setDouble(String name, double value) | public void | setFloat(String name, float value) | public void | setInt(String name, int value) | public void | setLong(String name, long value) | public void | setObject(String name, Object value) | public void | setShort(String name, short value) | public void | setString(String name, String value) |
clear | public void clear()(Code) | | |
getBoolean | public boolean getBoolean(String name) throws JMSException(Code) | | |
getByte | public byte getByte(String name) throws JMSException(Code) | | |
getBytes | public byte[] getBytes(String name) throws JMSException(Code) | | |
getChar | public char getChar(String name) throws JMSException(Code) | | |
getDouble | public double getDouble(String name) throws JMSException(Code) | | |
getFloat | public float getFloat(String name) throws JMSException(Code) | | |
getInt | public int getInt(String name) throws JMSException(Code) | | |
getLong | public long getLong(String name) throws JMSException(Code) | | |
getShort | public short getShort(String name) throws JMSException(Code) | | |
setBoolean | public void setBoolean(String name, boolean value) throws JMSException(Code) | | |
setByte | public void setByte(String name, byte value) throws JMSException(Code) | | |
setBytes | public void setBytes(String name, byte[] value)(Code) | | |
setDouble | public void setDouble(String name, double value) throws JMSException(Code) | | |
setFloat | public void setFloat(String name, float value) throws JMSException(Code) | | |
setInt | public void setInt(String name, int value) throws JMSException(Code) | | |
setLong | public void setLong(String name, long value) throws JMSException(Code) | | |
setShort | public void setShort(String name, short value) throws JMSException(Code) | | |
|
|