MCPcopy Create free account
hub / github.com/apache/nifi-minifi-cpp / getValues

Method getValues

libminifi/src/core/Property.cpp:65–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63}
64
65std::vector<std::string> Property::getValues() {
66 std::vector<std::string> values;
67 for (const auto &v : values_) {
68 values.push_back(v.to_string());
69 }
70 return values;
71}
72
73void Property::setSupportsExpressionLanguage(bool supportEl) {
74 supports_el_ = supportEl;

Callers 4

onEnableMethod · 0.80
onEnableMethod · 0.80
enableMethod · 0.80
onScheduleMethod · 0.80

Calls 1

to_stringMethod · 0.45

Tested by

no test coverage detected