grainier commented on a change in pull request #38:
URL:
https://github.com/apache/incubator-streampipes-extensions/pull/38#discussion_r603038921
##########
File path:
streampipes-processors-transformation-jvm/src/main/java/org/apache/streampipes/processors/transformation/jvm/processor/booloperator/logical/enums/BooleanOperatorType.java
##########
@@ -0,0 +1,29 @@
+package
org.apache.streampipes.processors.transformation.jvm.processor.booloperator.logical.enums;
+
+public enum BooleanOperatorType {
+
+ XOR("XOR", "Performs XOR between boolean operands"),
+ OR("OR", "Performs OR between boolean operands"),
+ AND("AND", "Performs AND between boolean operands"),
+ NOT("NOT", "Performs NOT on boolean operand"),
+ X_NOR("X-NOR", "Performs X-NOR between boolean operands"),
+ NOR("NOR","Performs NOR between boolean operands" );
+
+ private final String operator;
+ private final String description;
+
+ BooleanOperatorType(String operator, String description) {
+ this.operator = operator;
+ this.description = description;
+ }
+
+ public String operator()
+ {
Review comment:
```suggestion
public String operator() {
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]