io.sphere.sdk.search.model.SortSearchModel Maven / Gradle / Ivy
package io.sphere.sdk.search.model;
import io.sphere.sdk.search.SearchSortDirection;
import io.sphere.sdk.search.SortExpression;
/**
* A sort model to decide the direction.
*/
public interface SortSearchModel {
SortExpression by(final SearchSortDirection direction);
/**
* @return the ascending sort direction
*/
SortExpression byAsc();
/**
* @return the descending sort direction
*/
SortExpression byDesc();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy