#include <MapMessage.h>
Inheritance diagram for cms::MapMessage:
Public Member Functions | |
virtual | ~MapMessage (void) |
virtual std::vector< std::string > | getMapNames (void) const =0 |
virtual bool | itemExists (const std::string &name) const =0 |
virtual bool | getBoolean (const std::string &name)=0 |
virtual void | setBoolean (const std::string &name, bool value)=0 |
virtual unsigned char | getByte (const std::string &name)=0 |
virtual void | setByte (const std::string &name, unsigned char value)=0 |
virtual unsigned char * | getBytes (const std::string &name)=0 |
virtual void | setBytes (const std::string &name, unsigned char *value)=0 |
virtual char | getChar (const std::string &name)=0 |
virtual void | setChar (const std::string &name, char value)=0 |
virtual double | getDouble (const std::string &name)=0 |
virtual void | setDouble (const std::string &name, double value)=0 |
virtual float | getFloat (const std::string &name)=0 |
virtual void | setFloat (const std::string &name, float value)=0 |
virtual int | getInt (const std::string &name)=0 |
virtual void | setInt (const std::string &name, int value)=0 |
virtual long | getLong (const std::string &name)=0 |
virtual void | setLong (const std::string &name, long value)=0 |
virtual short | getShort (const std::string &name)=0 |
virtual void | setShort (const std::string &name, short value)=0 |
virtual std::string | getString (const std::string &name)=0 |
virtual void | setString (const std::string &name, const std::string &value)=0 |
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 CMSException is thrown.
|
|
|
Returns the Boolean value of the Specified name
|
|
Returns the Byte value of the Specified name
|
|
Returns the Bytes value of the Specified name
|
|
Returns the Char value of the Specified name
|
|
Returns the Double value of the Specified name
|
|
Returns the Float value of the Specified name
|
|
Returns the Int value of the Specified name
|
|
Returns the Long value of the Specified name
|
|
Returns an Enumeration of all the names in the MapMessage object.
|
|
Returns the Short value of the Specified name
|
|
Returns the String value of the Specified name
|
|
Indicates whether an item exists in this MapMessage object.
|
|
Sets a boolean value with the specified name into the Map.
|
|
Sets a Byte value with the specified name into the Map.
|
|
Sets a Bytes value with the specified name into the Map.
|
|
Sets a Char value with the specified name into the Map.
|
|
Sets a Double value with the specified name into the Map.
|
|
Sets a Float value with the specified name into the Map.
|
|
Sets a Int value with the specified name into the Map.
|
|
Sets a Long value with the specified name into the Map.
|
|
Sets a Short value with the specified name into the Map.
|
|
Sets a String value with the specified name into the Map.
|