4 #ifndef FIRE_STRINGOPERATOR_HPP_INCLUDED
5 #define FIRE_STRINGOPERATOR_HPP_INCLUDED
39 std::string value =
"";
41 switch (stringOperator) {
63 }
catch (
const std::exception& exception) {
81 if (
string ==
"None") {
83 }
else if (
string ==
"Matches") {
85 }
else if (
string ==
"StartsWith") {
87 }
else if (
string ==
"EndsWith") {
89 }
else if (
string ==
"Contains") {
94 }
catch (
const std::exception& exception) {
StringOperator fromString(const std::string &string)
Restituisce il valore di un operatore stringa data una stringa che rappresenta il valore dell'operato...
Definition: StringOperator.hpp:78
std::string toString(const StringOperator &stringOperator)
Restituisce la stringa che rappresenta il valore di un operatore stringa dato il valore di un operato...
Definition: StringOperator.hpp:38
StringOperator
Enumerativo per la gestione di un operatore stringa.
Definition: StringOperator.hpp:21