Java Doc for MapMessage.java in  » 6.0-JDK-Modules » JMS » javax » jms » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » JMS » javax.jms 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


javax.jms.MapMessage

MapMessage
public interface MapMessage extends Message(Code)
A MapMessage object is used to send a set of name-value pairs. The names are String objects, and the values are primitive data types in the Java programming language. The names must have a value that is not null, and not an empty string. The entries can be accessed sequentially or randomly by name. The order of the entries is undefined. MapMessage inherits from the Message interface and adds a message body that contains a Map.

The primitive types can be read or written explicitly using methods for each type. They may also be read or written generically as objects. For instance, a call to MapMessage.setInt("foo", 6) is equivalent to MapMessage.setObject("foo", new Integer(6)). Both forms are provided, because the explicit form is convenient for static programming, and the object form is needed when types are not known at compile time.

When a client receives a MapMessage, it is in read-only mode. If a client attempts to write to the message at this point, a MessageNotWriteableException is thrown. If clearBody is called, the message can now be both read from and written to.

MapMessage objects support the following conversion table. The marked cases must be supported. The unmarked cases must throw a JMSException. The String-to-primitive conversions may throw a runtime exception if the primitive's valueOf() method does not accept it as a valid String representation of the primitive.

A value written as the row type can be read as the column type.

 |        | boolean byte short char int long float double String byte[]
 |----------------------------------------------------------------------
 |boolean |    X                                            X
 |byte    |          X     X         X   X                  X
 |short   |                X         X   X                  X
 |char    |                     X                           X
 |int     |                          X   X                  X
 |long    |                              X                  X
 |float   |                                    X     X      X
 |double  |                                          X      X
 |String  |    X     X     X         X   X     X     X      X
 |byte[]  |                                                        X
 |----------------------------------------------------------------------
 

Attempting to read a null value as a primitive type must be treated as calling the primitive's corresponding valueOf(String) conversion method with a null value. Since char does not support a String conversion, attempting to read a null value as a char must throw a NullPointerException.
version:
   1.1 February 2, 002
author:
   Mark Hapner
author:
   Rich Burridge
See Also:   javax.jms.Session.createMapMessage
See Also:   javax.jms.BytesMessage
See Also:   javax.jms.Message
See Also:   javax.jms.ObjectMessage
See Also:   javax.jms.StreamMessage
See Also:   javax.jms.TextMessage





Method Summary
 booleangetBoolean(String name)
     Returns the boolean value with the specified name.
Parameters:
  name - the name of the boolean the boolean value with the specified name
exception:
  JMSException - if the JMS provider fails to read the messagedue to some internal error.
exception:
  MessageFormatException - if this type conversion is invalid.
 bytegetByte(String name)
     Returns the byte value with the specified name.
 byte[]getBytes(String name)
     Returns the byte array value with the specified name.
Parameters:
  name - the name of the byte array a copy of the byte array value with the specified name; if thereis noitem by this name, a null value is returned.
exception:
  JMSException - if the JMS provider fails to read the messagedue to some internal error.
exception:
  MessageFormatException - if this type conversion is invalid.
 chargetChar(String name)
     Returns the Unicode character value with the specified name.
Parameters:
  name - the name of the Unicode character the Unicode character value with the specified name
exception:
  JMSException - if the JMS provider fails to read the messagedue to some internal error.
exception:
  MessageFormatException - if this type conversion is invalid.
 doublegetDouble(String name)
     Returns the double value with the specified name.
Parameters:
  name - the name of the double the double value with the specified name
exception:
  JMSException - if the JMS provider fails to read the messagedue to some internal error.
exception:
  MessageFormatException - if this type conversion is invalid.
 floatgetFloat(String name)
     Returns the float value with the specified name.
Parameters:
  name - the name of the float the float value with the specified name
exception:
  JMSException - if the JMS provider fails to read the messagedue to some internal error.
exception:
  MessageFormatException - if this type conversion is invalid.
 intgetInt(String name)
     Returns the int value with the specified name.
Parameters:
  name - the name of the int the int value with the specified name
exception:
  JMSException - if the JMS provider fails to read the messagedue to some internal error.
exception:
  MessageFormatException - if this type conversion is invalid.
 longgetLong(String name)
     Returns the long value with the specified name.
Parameters:
  name - the name of the long the long value with the specified name
exception:
  JMSException - if the JMS provider fails to read the messagedue to some internal error.
exception:
  MessageFormatException - if this type conversion is invalid.
 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.
 shortgetShort(String name)
     Returns the short value with the specified name.
Parameters:
  name - the name of the short the short value with the specified name
exception:
  JMSException - if the JMS provider fails to read the messagedue to some internal error.
exception:
  MessageFormatException - if this type conversion is invalid.
 StringgetString(String name)
     Returns the String value with the specified name.
Parameters:
  name - the name of the String the String value with the specified name; if there is no item by this name, a null value is returned
exception:
  JMSException - if the JMS provider fails to read the messagedue to some internal error.
exception:
  MessageFormatException - if this type conversion is invalid.
 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.
 voidsetByte(String name, byte value)
     Sets a byte value with the specified name into the Map.
 voidsetBytes(String name, byte[] value)
     Sets a byte array value with the specified name into the Map.
 voidsetBytes(String name, byte[] value, int offset, int length)
     Sets a portion of the 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.
 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.



Method Detail
getBoolean
boolean getBoolean(String name) throws JMSException(Code)
Returns the boolean value with the specified name.
Parameters:
  name - the name of the boolean the boolean value with the specified name
exception:
  JMSException - if the JMS provider fails to read the messagedue to some internal error.
exception:
  MessageFormatException - if this type conversion is invalid.



getByte
byte getByte(String name) throws JMSException(Code)
Returns the byte value with the specified name.
Parameters:
  name - the name of the byte the byte value with the specified name
exception:
  JMSException - if the JMS provider fails to read the messagedue to some internal error.
exception:
  MessageFormatException - if this type conversion is invalid.



getBytes
byte[] getBytes(String name) throws JMSException(Code)
Returns the byte array value with the specified name.
Parameters:
  name - the name of the byte array a copy of the byte array value with the specified name; if thereis noitem by this name, a null value is returned.
exception:
  JMSException - if the JMS provider fails to read the messagedue to some internal error.
exception:
  MessageFormatException - if this type conversion is invalid.



getChar
char getChar(String name) throws JMSException(Code)
Returns the Unicode character value with the specified name.
Parameters:
  name - the name of the Unicode character the Unicode character value with the specified name
exception:
  JMSException - if the JMS provider fails to read the messagedue to some internal error.
exception:
  MessageFormatException - if this type conversion is invalid.



getDouble
double getDouble(String name) throws JMSException(Code)
Returns the double value with the specified name.
Parameters:
  name - the name of the double the double value with the specified name
exception:
  JMSException - if the JMS provider fails to read the messagedue to some internal error.
exception:
  MessageFormatException - if this type conversion is invalid.



getFloat
float getFloat(String name) throws JMSException(Code)
Returns the float value with the specified name.
Parameters:
  name - the name of the float the float value with the specified name
exception:
  JMSException - if the JMS provider fails to read the messagedue to some internal error.
exception:
  MessageFormatException - if this type conversion is invalid.



getInt
int getInt(String name) throws JMSException(Code)
Returns the int value with the specified name.
Parameters:
  name - the name of the int the int value with the specified name
exception:
  JMSException - if the JMS provider fails to read the messagedue to some internal error.
exception:
  MessageFormatException - if this type conversion is invalid.



getLong
long getLong(String name) throws JMSException(Code)
Returns the long value with the specified name.
Parameters:
  name - the name of the long the long value with the specified name
exception:
  JMSException - if the JMS provider fails to read the messagedue to some internal error.
exception:
  MessageFormatException - if this type conversion is invalid.



getMapNames
Enumeration getMapNames() throws JMSException(Code)
Returns an Enumeration of all the names in the MapMessage object. an enumeration of all the names in this MapMessage
exception:
  JMSException - if the JMS provider fails to read the messagedue to some internal error.



getObject
Object getObject(String name) throws JMSException(Code)
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[].
Parameters:
  name - the name of the Java object a copy of the Java object value with the specified name, in objectified format (for example, if the object was set as an int, an Integer is returned); if there is no item by this name, a null value is returned
exception:
  JMSException - if the JMS provider fails to read the messagedue to some internal error.




getShort
short getShort(String name) throws JMSException(Code)
Returns the short value with the specified name.
Parameters:
  name - the name of the short the short value with the specified name
exception:
  JMSException - if the JMS provider fails to read the messagedue to some internal error.
exception:
  MessageFormatException - if this type conversion is invalid.



getString
String getString(String name) throws JMSException(Code)
Returns the String value with the specified name.
Parameters:
  name - the name of the String the String value with the specified name; if there is no item by this name, a null value is returned
exception:
  JMSException - if the JMS provider fails to read the messagedue to some internal error.
exception:
  MessageFormatException - if this type conversion is invalid.



itemExists
boolean itemExists(String name) throws JMSException(Code)
Indicates whether an item exists in this MapMessage object.
Parameters:
  name - the name of the item to test true if the item exists
exception:
  JMSException - if the JMS provider fails to determine if the item exists due to some internal error.



setBoolean
void setBoolean(String name, boolean value) throws JMSException(Code)
Sets a boolean value with the specified name into the Map.
Parameters:
  name - the name of the boolean
Parameters:
  value - the boolean value to set in the Map
exception:
  JMSException - if the JMS provider fails to write the messagedue to some internal error.
exception:
  IllegalArgumentException - if the name is null or if the name isan empty string.
exception:
  MessageNotWriteableException - if the message is in read-only mode.



setByte
void setByte(String name, byte value) throws JMSException(Code)
Sets a byte value with the specified name into the Map.
Parameters:
  name - the name of the byte
Parameters:
  value - the byte value to set in the Map
exception:
  JMSException - if the JMS provider fails to write the messagedue to some internal error.
exception:
  IllegalArgumentException - if the name is null or if the name isan empty string.
exception:
  MessageNotWriteableException - if the message is in read-only mode.



setBytes
void setBytes(String name, byte[] value) throws JMSException(Code)
Sets a byte array value with the specified name into the Map.
Parameters:
  name - the name of the byte array
Parameters:
  value - the byte array value to set in the Map; the arrayis copied so that the value for name willnot be altered by future modifications
exception:
  JMSException - if the JMS provider fails to write the messagedue to some internal error.
exception:
  NullPointerException - if the name is null, or if the name isan empty string.
exception:
  MessageNotWriteableException - if the message is in read-only mode.



setBytes
void setBytes(String name, byte[] value, int offset, int length) throws JMSException(Code)
Sets a portion of the byte array value with the specified name into the Map.
Parameters:
  name - the name of the byte array
Parameters:
  value - the byte array value to set in the Map
Parameters:
  offset - the initial offset within the byte array
Parameters:
  length - the number of bytes to use
exception:
  JMSException - if the JMS provider fails to write the messagedue to some internal error.
exception:
  IllegalArgumentException - if the name is null or if the name isan empty string.
exception:
  MessageNotWriteableException - if the message is in read-only mode.



setChar
void setChar(String name, char value) throws JMSException(Code)
Sets a Unicode character value with the specified name into the Map.
Parameters:
  name - the name of the Unicode character
Parameters:
  value - the Unicode character value to set in the Map
exception:
  JMSException - if the JMS provider fails to write the messagedue to some internal error.
exception:
  IllegalArgumentException - if the name is null or if the name isan empty string.
exception:
  MessageNotWriteableException - if the message is in read-only mode.



setDouble
void setDouble(String name, double value) throws JMSException(Code)
Sets a double value with the specified name into the Map.
Parameters:
  name - the name of the double
Parameters:
  value - the double value to set in the Map
exception:
  JMSException - if the JMS provider fails to write the messagedue to some internal error.
exception:
  IllegalArgumentException - if the name is null or if the name isan empty string.
exception:
  MessageNotWriteableException - if the message is in read-only mode.



setFloat
void setFloat(String name, float value) throws JMSException(Code)
Sets a float value with the specified name into the Map.
Parameters:
  name - the name of the float
Parameters:
  value - the float value to set in the Map
exception:
  JMSException - if the JMS provider fails to write the messagedue to some internal error.
exception:
  IllegalArgumentException - if the name is null or if the name isan empty string.
exception:
  MessageNotWriteableException - if the message is in read-only mode.



setInt
void setInt(String name, int value) throws JMSException(Code)
Sets an int value with the specified name into the Map.
Parameters:
  name - the name of the int
Parameters:
  value - the int value to set in the Map
exception:
  JMSException - if the JMS provider fails to write the messagedue to some internal error.
exception:
  IllegalArgumentException - if the name is null or if the name isan empty string.
exception:
  MessageNotWriteableException - if the message is in read-only mode.



setLong
void setLong(String name, long value) throws JMSException(Code)
Sets a long value with the specified name into the Map.
Parameters:
  name - the name of the long
Parameters:
  value - the long value to set in the Map
exception:
  JMSException - if the JMS provider fails to write the messagedue to some internal error.
exception:
  IllegalArgumentException - if the name is null or if the name isan empty string.
exception:
  MessageNotWriteableException - if the message is in read-only mode.



setObject
void setObject(String name, Object value) throws JMSException(Code)
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.
Parameters:
  name - the name of the Java object
Parameters:
  value - the Java object value to set in the Map
exception:
  JMSException - if the JMS provider fails to write the messagedue to some internal error.
exception:
  IllegalArgumentException - if the name is null or if the name isan empty string.
exception:
  MessageFormatException - if the object is invalid.
exception:
  MessageNotWriteableException - if the message is in read-only mode.




setShort
void setShort(String name, short value) throws JMSException(Code)
Sets a short value with the specified name into the Map.
Parameters:
  name - the name of the short
Parameters:
  value - the short value to set in the Map
exception:
  JMSException - if the JMS provider fails to write the messagedue to some internal error.
exception:
  IllegalArgumentException - if the name is null or if the name isan empty string.
exception:
  MessageNotWriteableException - if the message is in read-only mode.



setString
void setString(String name, String value) throws JMSException(Code)
Sets a String value with the specified name into the Map.
Parameters:
  name - the name of the String
Parameters:
  value - the String value to set in the Map
exception:
  JMSException - if the JMS provider fails to write the messagedue to some internal error.
exception:
  IllegalArgumentException - if the name is null or if the name isan empty string.
exception:
  MessageNotWriteableException - if the message is in read-only mode.



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.