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

net.antidot.api.search.FacetMode Maven / Gradle / Ivy

The newest version!
package net.antidot.api.search;

/** Management of new facet value.
 * 

* When adding new facet value to filter on, two different cases occurs: *

*
REPLACE
*
New facet value replace existing one. * This means that you cannot filter one multiple facet values.
*
ADD
*
New facet value is added to existing one, allowing filter on multiple facet values.
*
*/ public enum FacetMode { /** New facet value replace any existing one. */ REPLACE, /** New facet values are added to existing ones. */ ADD }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy