Example usage for Java javax.jms MapMessage fields, constructors, methods, implement or subclass
The text is from its open source code.
void | acknowledge() Acknowledges all consumed messages of the session of this consumed message. |
boolean | getBoolean(String name) Returns the boolean value with the specified name. |
byte[] | getBytes(String name) Returns the byte array value with the specified name. |
double | getDouble(String name) Returns the double value with the specified name. |
float | getFloat(String name) Returns the float value with the specified name. |
int | getInt(String name) Returns the int value with the specified name. |
int | getIntProperty(String name) Returns the value of the int property with the specified name. |
String | getJMSCorrelationID() Gets the correlation ID for the message. |
String | getJMSMessageID() Gets the message ID. |
long | getLong(String name) Returns the long value with the specified name. |
Enumeration | getMapNames() Returns an Enumeration of all the names in the MapMessage object. |
Object | getObject(String name) Returns the value of the object with the specified name. |
String | getString(String name) Returns the String value with the specified name. |
String | getStringProperty(String name) Returns the value of the String property with the specified name. |
boolean | itemExists(String name) Indicates whether an item exists in this MapMessage object. |
void | setBoolean(String name, boolean value) Sets a boolean value with the specified name into the Map. |
void | setBooleanProperty(String name, boolean value) Sets a boolean property value with the specified name into the message. |
void | setBytes(String name, byte[] value) Sets a byte array value with the specified name into the Map. |
void | setChar(String name, char value) Sets a Unicode character value with the specified name into the Map. |
void | setDouble(String name, double value) Sets a double value with the specified name into the Map. |
void | setFloat(String name, float value) Sets a float value with the specified name into the Map. |
void | setInt(String name, int value) Sets an int value with the specified name into the Map. |
void | setIntProperty(String name, int value) Sets an int property value with the specified name into the message. |
void | setJMSCorrelationID(String correlationID) Sets the correlation ID for the message. |
void | setJMSReplyTo(Destination replyTo) Sets the Destination object to which a reply to this message should be sent. |
void | setJMSTimestamp(long timestamp) Sets the message timestamp. |
void | setLong(String name, long value) Sets a long value with the specified name into the Map. |
void | setObject(String name, Object value) Sets an object value with the specified name into the Map. |
void | setShort(String name, short value) Sets a short value with the specified name into the Map. |
void | setString(String name, String value) Sets a String value with the specified name into the Map. |
void | setStringProperty(String name, String value) Sets a String property value with the specified name into the message. |
String | toString() Returns a string representation of the object. |