Java javax.jms MapMessage fields, constructors, methods, implement or subclass

Example usage for Java javax.jms MapMessage fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.jms MapMessage.

The text is from its open source code.

Implementation

javax.jms.MapMessage has the following implementations.
Click this link to see all its implementation.

Constructor

Method

voidacknowledge()
Acknowledges all consumed messages of the session of this consumed message.
booleangetBoolean(String name)
Returns the boolean value with the specified name.
byte[]getBytes(String name)
Returns the byte array value with the specified name.
doublegetDouble(String name)
Returns the double value with the specified name.
floatgetFloat(String name)
Returns the float value with the specified name.
intgetInt(String name)
Returns the int value with the specified name.
intgetIntProperty(String name)
Returns the value of the int property with the specified name.
StringgetJMSCorrelationID()
Gets the correlation ID for the message.
StringgetJMSMessageID()
Gets the message ID.
longgetLong(String name)
Returns the long value with the specified name.
EnumerationgetMapNames()
Returns an Enumeration of all the names in the MapMessage object.
ObjectgetObject(String name)
Returns the value of the object with the specified name.
StringgetString(String name)
Returns the String value with the specified name.
StringgetStringProperty(String name)
Returns the value of the String property with the specified name.
booleanitemExists(String name)
Indicates whether an item exists in this MapMessage object.
voidsetBoolean(String name, boolean value)
Sets a boolean value with the specified name into the Map.
voidsetBooleanProperty(String name, boolean value)
Sets a boolean property value with the specified name into the message.
voidsetBytes(String name, byte[] value)
Sets a byte array value with the specified name into the Map.
voidsetChar(String name, char value)
Sets a Unicode character value with the specified name into the Map.
voidsetDouble(String name, double value)
Sets a double value with the specified name into the Map.
voidsetFloat(String name, float value)
Sets a float value with the specified name into the Map.
voidsetInt(String name, int value)
Sets an int value with the specified name into the Map.
voidsetIntProperty(String name, int value)
Sets an int property value with the specified name into the message.
voidsetJMSCorrelationID(String correlationID)
Sets the correlation ID for the message.
voidsetJMSReplyTo(Destination replyTo)
Sets the Destination object to which a reply to this message should be sent.
voidsetJMSTimestamp(long timestamp)
Sets the message timestamp.
voidsetLong(String name, long value)
Sets a long value with the specified name into the Map.
voidsetObject(String name, Object value)
Sets an object value with the specified name into the Map.
voidsetShort(String name, short value)
Sets a short value with the specified name into the Map.
voidsetString(String name, String value)
Sets a String value with the specified name into the Map.
voidsetStringProperty(String name, String value)
Sets a String property value with the specified name into the message.
StringtoString()
Returns a string representation of the object.