com.moengage.enum_models.Operator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of condition-evaluator Show documentation
Show all versions of condition-evaluator Show documentation
Condition Evaluator for MoEngage Platform
package com.moengage.enum_models;
public interface Operator {
String EQUAL_TO = "is";
String LESS_THAN = "lessThan";
String GREATER_THAN = "greaterThan";
String BETWEEN = "between";
String IN = "in";
String EXISTS = "exists";
String CONTAINS = "contains";
String CONTAINS_IN_THE_FOLLOWING = "containsInTheFollowing";
String STARTS_WITH = "startsWith";
String STARTS_WITH_IN_THE_FOLLOWING = "startsWithInTheFollowing";
String ENDS_WITH = "endsWith";
String ENDS_WITH_IN_THE_FOLLOWING = "endsWithInTheFollowing";
String IN_THE_LAST = "inTheLast";
String IN_THE_NEXT = "inTheNext";
String AFTER = "after";
String BEFORE = "before";
String ON = "on";
String TODAY = "today";
String EMPTY = "empty";
}