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

com.tuana9a.spring.data.mongodb.CriteriaPart Maven / Gradle / Ivy

The newest version!
package com.tuana9a.spring.data.mongodb;

import lombok.Getter;
import lombok.Setter;

public class CriteriaPart {
    public static final String REGEX_PATTERN = "(\\w+)(==|>=|<=|!=|\\*=|@=|>|<)(.*)";

    private @Getter @Setter String key;
    private @Getter @Setter Object value;
    private @Getter @Setter String operator;

    public CriteriaPart(String key, String operator, Object value) {
        this.key = key;
        this.operator = operator;
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy