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

io.sphere.sdk.queries.QuerySort Maven / Gradle / Ivy

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