com.tuana9a.spring.data.mongodb.Operator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-data-mongodb Show documentation
Show all versions of spring-data-mongodb Show documentation
A wrapper around spring-data-mongodb
The newest version!
package com.tuana9a.spring.data.mongodb;
public class Operator {
public static String EQ = "==";
public static String NE = "!=";
public static String GT = ">";
public static String LT = "<";
public static String GTE = ">=";
public static String LTE = "<=";
public static String REGEX = "*=";
public static String IN = "@=";
public static String ASC = "1";
public static String DESC = "-1";
}