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

io.sphere.sdk.search.SearchSort Maven / Gradle / Ivy

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