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

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

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

public interface RangeTermModel> {

    /**
     * Eventually generates an expression to filter elements by certain range of values.
     * @return the model to specify the range of values to filter by
     */
    RangedFilterSearchModel filtered();

    /**
     * Eventually generates an expression to obtain the facets of the attribute for certain range of values.
     * @return the model to specify the range of values from which to obtain the facets
     */
    RangedFacetSearchModel faceted();

    /**
     * Gets an untyped search model (expecting simple Strings) while keeping the same search model path as this.
     * This untyped search model allows you to build filters and facets, both range and term models.
     * @return the untyped search model for this instance
     */
    UntypedSearchModel untyped();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy