All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sphere.sdk.search.model.SortSearchModel Maven / Gradle / Ivy

There is a newer version: 1.0.0-M26
Show newest version
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