io.polyglotted.pgmodel.search.query.SortMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pg-model Show documentation
Show all versions of pg-model Show documentation
Standard set of models for geo coding, access control and elastic search abstraction
The newest version!
package io.polyglotted.pgmodel.search.query;
@SuppressWarnings("unused")
public enum SortMode {
NONE, MIN, MAX, SUM, AVG;
public String toMode() {
return NONE == this ? null : name().toLowerCase();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy