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

io.sphere.client.filters.expressions.FilterType Maven / Gradle / Ivy

There is a newer version: 0.72.1
Show newest version
package io.sphere.client.filters.expressions;

/** The way a search filter influences facet counts. */
public enum FilterType {
  /** The filter restricts the result set as well as all facets. This is the default. */
  RESULTS_AND_FACETS,
  /** The filter restricts the result set but has no effect on facets. */
  RESULTS,
  /** The filter does not restrict the result set itself.
   *  It only restricts facets, except the facet with identical path expression as this filter. */
  FACETS,
  /** The filter restricts the result set as well as all facets, except facets with identical path expression
   *  as this filter.
   *  This is a good way to achieve standard multiselect faceting behavior, where a single attribute is
   *  used for faceting as well as for filtering. */
  SMART
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy