Facets in a group are combined with an OR operation
Example
// FacetGroup with the version "1.16.5" or "1.17.1" newFacetGroup( // Combined with OR newFacet(FacetType.Versions, FacetOperation.EQUALS, "1.16.5"), newFacet(FacetType.Versions, FacetOperation.EQUALS, "1.17.1") );
// FacetGroup with the version "1.16.5" or "1.17.1" newFacetGroup( // Combined with OR newFacet(FacetType.Versions, FacetOperation.EQUALS, "1.16.5"), newFacet(FacetType.Versions, FacetOperation.EQUALS, "1.17.1") )
Represents a group of Facets
Facets in a group are combined with an OR operation
Example