com.tuana9a.spring.data.mongodb.Opts 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 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;
}
}