io.harness.cf.client.api.Operators Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ff-java-server-sdk Show documentation
Show all versions of ff-java-server-sdk Show documentation
Harness Feature Flag Java Server SDK
The newest version!
package io.harness.cf.client.api;
interface Operators {
String STARTS_WITH = "starts_with";
String ENDS_WITH = "ends_with";
String MATCH = "match";
String CONTAINS = "contains";
String EQUAL = "equal";
String EQUAL_SENSITIVE = "equal_sensitive";
String IN = "in";
String SEGMENT_MATCH = "segmentMatch";
}