Gaudi::Parsers::Property Class Referencefinal

#include <src/JobOptionsSvc/Property.h>

Collaboration diagram for Gaudi::Parsers::Property:

Classes

class  Equal
 
struct  LessThen
 

Public Member Functions

 Property (PropertyName property_name, PropertyValue property_value)
 
const PropertyNameproperty_name () const
 
PropertyValueproperty_value ()
 
Propertyoperator+= (const PropertyValue &value)
 
Propertyoperator-= (const PropertyValue &value)
 
const PositionDefinedPosition () const
 
bool HasDefinedPosition () const
 
const PositionValuePosition () const
 
bool HasValuePosition () const
 
const std::stringClientName () const
 
const std::stringNameInClient () const
 
std::string FullName () const
 
std::string ValueAsString () const
 
std::string ToString () const
 
bool IsSimple () const
 
bool IsVector () const
 
bool IsMap () const
 
bool IsReference () const
 

Private Attributes

PropertyName property_name_
 
PropertyValue property_value_
 

Detailed Description

Definition at line 16 of file Property.h.

Constructor & Destructor Documentation

Gaudi::Parsers::Property::Property ( PropertyName  property_name,
PropertyValue  property_value 
)
inline

Definition at line 36 of file Property.h.

36  :
PropertyName property_name_
Definition: Property.h:73
PropertyValue property_value_
Definition: Property.h:74
PropertyValue & property_value()
Definition: Property.h:42
T move(T...args)
const PropertyName & property_name() const
Definition: Property.h:39

Member Function Documentation

const std::string & Property::ClientName ( ) const

Definition at line 27 of file Property.cpp.

27  {
28  return property_name_.client();
29 }
PropertyName property_name_
Definition: Property.h:73
const std::string & client() const
Definition: PropertyName.h:28
const gp::Position & Property::DefinedPosition ( ) const

Definition at line 19 of file Property.cpp.

19  {
20  return property_name_.position();
21 }
PropertyName property_name_
Definition: Property.h:73
const Position & position() const
Definition: PropertyName.h:30
std::string Property::FullName ( ) const

Definition at line 35 of file Property.cpp.

35  {
36  return property_name_.ToString();
37 }
PropertyName property_name_
Definition: Property.h:73
std::string ToString() const
bool Gaudi::Parsers::Property::HasDefinedPosition ( ) const
inline

Definition at line 56 of file Property.h.

56 { return DefinedPosition().Exists();}
const Position & DefinedPosition() const
Definition: Property.cpp:19
bool Exists() const
Definition: Position.h:22
bool Gaudi::Parsers::Property::HasValuePosition ( ) const
inline

Definition at line 59 of file Property.h.

59 { return ValuePosition().Exists();}
bool Exists() const
Definition: Position.h:22
const Position & ValuePosition() const
Definition: Property.cpp:23
bool Property::IsMap ( ) const

Definition at line 55 of file Property.cpp.

55  {
56  return property_value_.IsMap();
57 }
PropertyValue property_value_
Definition: Property.h:74
bool Gaudi::Parsers::Property::IsReference ( ) const
inline

Definition at line 69 of file Property.h.

69 { return property_value_.IsReference();}
PropertyValue property_value_
Definition: Property.h:74
bool Property::IsSimple ( ) const

Definition at line 47 of file Property.cpp.

47  {
48  return property_value_.IsSimple();
49 }
PropertyValue property_value_
Definition: Property.h:74
bool Property::IsVector ( ) const

Definition at line 51 of file Property.cpp.

51  {
52  return property_value_.IsVector();
53 }
PropertyValue property_value_
Definition: Property.h:74
const std::string & Property::NameInClient ( ) const

Definition at line 31 of file Property.cpp.

31  {
32  return property_name_.property();
33 }
const std::string & property() const
Definition: PropertyName.h:29
PropertyName property_name_
Definition: Property.h:73
Property& Gaudi::Parsers::Property::operator+= ( const PropertyValue value)
inline

Definition at line 46 of file Property.h.

46  {
47  property_value_ += value;
48  return *this;
49  }
PropertyValue property_value_
Definition: Property.h:74
Property& Gaudi::Parsers::Property::operator-= ( const PropertyValue value)
inline

Definition at line 50 of file Property.h.

50  {
51  property_value_ -= value;
52  return *this;
53  }
PropertyValue property_value_
Definition: Property.h:74
const PropertyName& Gaudi::Parsers::Property::property_name ( ) const
inline

Definition at line 39 of file Property.h.

39  {
40  return property_name_;
41  }
PropertyName property_name_
Definition: Property.h:73
PropertyValue& Gaudi::Parsers::Property::property_value ( )
inline

Definition at line 42 of file Property.h.

42  {
43  return property_value_;
44  }
PropertyValue property_value_
Definition: Property.h:74
std::string Property::ToString ( ) const

Definition at line 43 of file Property.cpp.

43  {
44  return FullName()+" = "+ValueAsString();
45 }
std::string FullName() const
Definition: Property.cpp:35
std::string ValueAsString() const
Definition: Property.cpp:39
std::string Property::ValueAsString ( ) const

Definition at line 39 of file Property.cpp.

39  {
41 }
PropertyValue property_value_
Definition: Property.h:74
std::string replaceEnvironments(const std::string &input)
Definition: Utils.cpp:18
std::string ToString() const
const gp::Position & Property::ValuePosition ( ) const

Definition at line 23 of file Property.cpp.

23  {
24  return property_value_.position();
25 }
PropertyValue property_value_
Definition: Property.h:74
const Position & position() const
Definition: PropertyValue.h:34

Member Data Documentation

PropertyName Gaudi::Parsers::Property::property_name_
private

Definition at line 73 of file Property.h.

PropertyValue Gaudi::Parsers::Property::property_value_
private

Definition at line 74 of file Property.h.


The documentation for this class was generated from the following files: