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