Methods Summary |
---|
public boolean | getBoolean(java.lang.String name)Returns the boolean value with the specified name.
|
public byte | getByte(java.lang.String name)Returns the byte value with the specified name.
|
public byte[] | getBytes(java.lang.String name)Returns the byte array value with the specified name.
|
public char | getChar(java.lang.String name)Returns the Unicode character value with the specified name.
|
public double | getDouble(java.lang.String name)Returns the double value with the specified name.
|
public float | getFloat(java.lang.String name)Returns the float value with the specified name.
|
public int | getInt(java.lang.String name)Returns the int value with the specified name.
|
public long | getLong(java.lang.String name)Returns the long value with the specified name.
|
public java.util.Enumeration | getMapNames()Returns an Enumeration of all the names in the
MapMessage object.
|
public java.lang.Object | getObject(java.lang.String name)Returns the value of the object with the specified name.
This method can be used to return, in objectified format,
an object in the Java programming language ("Java object") that had
been stored in the Map with the equivalent
setObject method call, or its equivalent primitive
settype method.
Note that byte values are returned as byte[] , not
Byte[] .
|
public short | getShort(java.lang.String name)Returns the short value with the specified name.
|
public java.lang.String | getString(java.lang.String name)Returns the String value with the specified name.
|
public boolean | itemExists(java.lang.String name)Indicates whether an item exists in this MapMessage object.
|
public void | setBoolean(java.lang.String name, boolean value)Sets a boolean value with the specified name into the Map.
|
public void | setByte(java.lang.String name, byte value)Sets a byte value with the specified name into the Map.
|
public void | setBytes(java.lang.String name, byte[] value)Sets a byte array value with the specified name into the Map.
|
public void | setBytes(java.lang.String name, byte[] value, int offset, int length)Sets a portion of the byte array value with the specified name into the
Map.
|
public void | setChar(java.lang.String name, char value)Sets a Unicode character value with the specified name into the Map.
|
public void | setDouble(java.lang.String name, double value)Sets a double value with the specified name into the Map.
|
public void | setFloat(java.lang.String name, float value)Sets a float value with the specified name into the Map.
|
public void | setInt(java.lang.String name, int value)Sets an int value with the specified name into the Map.
|
public void | setLong(java.lang.String name, long value)Sets a long value with the specified name into the Map.
|
public void | setObject(java.lang.String name, java.lang.Object value)Sets an object value with the specified name into the Map.
This method works only for the objectified primitive
object types (Integer , Double ,
Long ...), String objects, and byte
arrays.
|
public void | setShort(java.lang.String name, short value)Sets a short value with the specified name into the Map.
|
public void | setString(java.lang.String name, java.lang.String value)Sets a String value with the specified name into the Map.
|