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

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

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

public class Opts {
    public static Opts DEFAULT = new Opts();

    public String delimiter;
    public String regexOptions;
    public String inOperatorDelimiter;

    public Opts() {
        this.delimiter = Config.DELIMITER;
        this.regexOptions = Config.REGEX_OPTIONS;
        this.inOperatorDelimiter = Config.LIST_VALUE_DELIMITER;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy