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