#include <SimpleProperties.h>
Inheritance diagram for activemq::util::SimpleProperties:
Public Member Functions | |
virtual | ~SimpleProperties () |
virtual bool | isEmpty () const |
virtual const char * | getProperty (const std::string &name) const |
virtual std::string | getProperty (const std::string &name, const std::string &defaultValue) const |
virtual void | setProperty (const std::string &name, const std::string &value) |
virtual bool | hasProperty (const std::string &name) const |
virtual std::vector< std::pair< std::string, std::string > > | toArray () const |
virtual void | copy (const Properties *source) |
virtual Properties * | clone () const |
virtual void | clear () |
Private Attributes | |
std::map< std::string, std::string > | properties |
|
|
|
Clears all properties from the map. Implements activemq::util::Properties. |
|
Clones this object.
Implements activemq::util::Properties. |
|
Copies the contents of the given properties object to this one.
Implements activemq::util::Properties. |
|
Looks up the value for the given property.
Implements activemq::util::Properties. |
|
Looks up the value for the given property.
Implements activemq::util::Properties. |
|
Check to see if the Property exists in the set
Implements activemq::util::Properties. |
|
Returns true if the properties object is empty
Implements activemq::util::Properties. |
|
Sets the value for a given property. If the property already exists, overwrites the value.
Implements activemq::util::Properties. |
|
Method that serializes the contents of the property map to an arryay.
Implements activemq::util::Properties. |
|
|