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

io.sphere.sdk.carts.queries.ShippingRateInputQueryModelImpl Maven / Gradle / Ivy

The newest version!
package io.sphere.sdk.carts.queries;

import io.sphere.sdk.queries.*;
import io.sphere.sdk.taxcategories.queries.TaxRateQueryModel;

/**
 * internal query model class
 * @param  context
 */
final class ShippingRateInputQueryModelImpl extends QueryModelImpl implements ShippingRateInputQueryModel {
    public ShippingRateInputQueryModelImpl(final QueryModel parent, final String pathSegment) {
        super(parent, pathSegment);
    }


    @Override
    public QueryPredicate isNotPresent() {
        return isNotPresentPredicate();
    }

    @Override
    public QueryPredicate isPresent() {
        return isPresentPredicate();
    }

    @Override
    public StringQuerySortingModel key(){
        return stringQuerySortingModel("key");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy