Wrong key and typo in OperatorType enum 77/133577/1
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Wed, 8 Mar 2023 08:25:29 +0000 (08:25 +0000)
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Wed, 8 Mar 2023 08:25:29 +0000 (08:25 +0000)
Issue-ID: USECASEUI-783

Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: I415fa0ead5cd181d60d46c3d8aa729fe687f94d0

intentanalysis/src/main/java/org/onap/usecaseui/intentanalysis/bean/enums/OperatorType.java

index 9478c69..c9dba32 100644 (file)
@@ -21,10 +21,10 @@ import lombok.Getter;
 @Getter
 public enum OperatorType {
     OR(0,"or"),
-    GATHERTHAN(1,"gather than"),
+    GREATERTHAN(1,"greater than"),
     EQUALTO(2,"equal to"),
     LESSTHAN(3,"less than"),
-    NOTEQUALTO(4,"not euqal to"),
+    NOTEQUALTO(4,"not equal to"),
     ONEOF(5,"one of"),
     SOMEOF(6,"some of"),
     MAXIMUMVALUE(7,"maximum value"),