javax.jms

Interface MapMessage

All Superinterfaces:
Message

public interface MapMessage
extends Message

Fields inherited from interface javax.jms.Message

DEFAULT_DELIVERY_MODE, DEFAULT_PRIORITY, DEFAULT_TIME_TO_LIVE

Method Summary

boolean
getBoolean(String name)
byte
getByte(String name)
byte[]
getBytes(String name)
char
getChar(String name)
double
getDouble(String name)
float
getFloat(String name)
int
getInt(String name)
long
getLong(String name)
Enumeration
getMapNames()
Object
getObject(String name)
short
getShort(String name)
String
getString(String name)
boolean
itemExists(String name)
void
setBoolean(String name, boolean value)
void
setByte(String name, byte value)
void
setBytes(String name, byte[] value)
void
setBytes(String name, byte[] value, int offset, int length)
void
setChar(String name, char value)
void
setDouble(String name, double value)
void
setFloat(String name, float value)
void
setInt(String name, int value)
void
setLong(String name, long value)
void
setObject(String name, Object value)
void
setShort(String name, short value)
void
setString(String name, String value)

Methods inherited from interface javax.jms.Message

acknowledge, clearBody, clearProperties, getBooleanProperty, getByteProperty, getDoubleProperty, getFloatProperty, getIntProperty, getJMSCorrelationID, getJMSCorrelationIDAsBytes, getJMSDeliveryMode, getJMSDestination, getJMSExpiration, getJMSMessageID, getJMSPriority, getJMSRedelivered, getJMSReplyTo, getJMSTimestamp, getJMSType, getLongProperty, getObjectProperty, getPropertyNames, getShortProperty, getStringProperty, propertyExists, setBooleanProperty, setByteProperty, setDoubleProperty, setFloatProperty, setIntProperty, setJMSCorrelationID, setJMSCorrelationIDAsBytes, setJMSDeliveryMode, setJMSDestination, setJMSExpiration, setJMSMessageID, setJMSPriority, setJMSRedelivered, setJMSReplyTo, setJMSTimestamp, setJMSType, setLongProperty, setObjectProperty, setShortProperty, setStringProperty

Method Details

getBoolean

public boolean getBoolean(String name)
            throws JMSException

getByte

public byte getByte(String name)
            throws JMSException

getBytes

public byte[] getBytes(String name)
            throws JMSException

getChar

public char getChar(String name)
            throws JMSException

getDouble

public double getDouble(String name)
            throws JMSException

getFloat

public float getFloat(String name)
            throws JMSException

getInt

public int getInt(String name)
            throws JMSException

getLong

public long getLong(String name)
            throws JMSException

getMapNames

public Enumeration getMapNames()
            throws JMSException

getObject

public Object getObject(String name)
            throws JMSException

getShort

public short getShort(String name)
            throws JMSException

getString

public String getString(String name)
            throws JMSException

itemExists

public boolean itemExists(String name)
            throws JMSException

setBoolean

public void setBoolean(String name,
                       boolean value)
            throws JMSException

setByte

public void setByte(String name,
                    byte value)
            throws JMSException

setBytes

public void setBytes(String name,
                     byte[] value)
            throws JMSException

setBytes

public void setBytes(String name,
                     byte[] value,
                     int offset,
                     int length)
            throws JMSException

setChar

public void setChar(String name,
                    char value)
            throws JMSException

setDouble

public void setDouble(String name,
                      double value)
            throws JMSException

setFloat

public void setFloat(String name,
                     float value)
            throws JMSException

setInt

public void setInt(String name,
                   int value)
            throws JMSException

setLong

public void setLong(String name,
                    long value)
            throws JMSException

setObject

public void setObject(String name,
                      Object value)
            throws JMSException

setShort

public void setShort(String name,
                     short value)
            throws JMSException

setString

public void setString(String name,
                      String value)
            throws JMSException