
io.polyglotted.esmodel.api.query.SortMode Maven / Gradle / Ivy
package io.polyglotted.esmodel.api.query;
@SuppressWarnings("unused")
public enum SortMode {
NONE, MIN, MAX, SUM, AVG;
public String toMode() {
return NONE == this ? null : name().toLowerCase();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy