io.sphere.sdk.search.SearchSort Maven / Gradle / Ivy
package io.sphere.sdk.search;
public interface SearchSort {
/**
* returns a sort expression.
* Example: dog.age asc
* @return String with unescaped sphere sort expression
*/
String toSphereSort();
public static SearchSort of(final String sphereSortExpression) {
return new SimpleSearchSort<>(sphereSortExpression);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy