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

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

There is a newer version: 1.0.0-M26
Show newest version
package io.sphere.sdk.queries;

import io.sphere.sdk.models.Base;

abstract class QuerySortBase extends Base implements QuerySort {
    @Override
    public final boolean equals(Object o) {
        return o != null && o instanceof QuerySort && toSphereSort().equals(((QuerySort) o).toSphereSort());
    }

    @Override
    public final int hashCode() {
        return toSphereSort().hashCode();
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy