24.2. Interface Definition

package javax.jms;
   public interface MapMessage extends Message {
   boolean getBoolean(String name) throws JMSException;
   byte getByte(String name) throws JMSException;
   byte[] getBytes(String name) throws JMSException;
   char getChar(String name) throws JMSException;
   double getDouble(String name) throws JMSException;
   float getFloat(String name) throws JMSException;
   int getInt(String name) throws JMSException;
   long getLong(String name) throws JMSException;
   Enumeration getMapNames() throws JMSException;
   Object getObject(String name) throws JMSException;
   short getShort(String name) throws JMSException;
   String getString(String name) throws JMSException;
   boolean itemExists(String name) throws JMSException;
   void setBoolean(String ...

Get Java™ Message Service API Tutorial and Reference: Messaging for the J2EE™ Platform now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.