All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.anwen.mongo.enums.CommonOperators Maven / Gradle / Ivy

There is a newer version: 2.1.5
Show newest version
package com.anwen.mongo.enums;

/**
 * 操作符
 * @author anwen
 * @date 2024/8/25 11:18
 */
public enum CommonOperators {

    ABS("$abs"),



    ;

    private final String operator;

    CommonOperators(String operator) {
        this.operator = operator;
    }

    public String getOperator() {
        return operator;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy