Uses of Class
com.attivio.sdk.search.facet.FacetRequest
-
Packages that use FacetRequest Package Description com.attivio.sdk.search com.attivio.sdk.search.facet Copyright 2019 Attivio Inc., All rights reserved.com.attivio.util.parser com.attivio.util.query Contains classes related to Attivio queries and query handlers.com.attivio.util.serialization Contains classes related to serialization/desearialization of objects to/from XML. -
-
Uses of FacetRequest in com.attivio.sdk.search
Methods in com.attivio.sdk.search that return types with arguments of type FacetRequest Modifier and Type Method Description java.util.List<FacetRequest>
QueryFrame. getFacets()
java.util.List<FacetRequest>
QueryRequest. getFacets()
Get the facets requested for this QueryRequest.Methods in com.attivio.sdk.search with parameters of type FacetRequest Modifier and Type Method Description void
QueryFrame. addFacet(FacetRequest value)
void
QueryRequest. addFacet(FacetRequest... f)
Adds allFacetRequest
s to this QueryRequest.boolean
QueryRequest. removeFacet(FacetRequest facet)
Remove the specified FacetRequest.void
QueryFrame. setFacets(FacetRequest... value)
void
QueryRequest. setFacets(FacetRequest... facets)
Set theFacetRequest
s for this query.Method parameters in com.attivio.sdk.search with type arguments of type FacetRequest Modifier and Type Method Description void
QueryFrame. forEachFacet(java.util.function.Consumer<FacetRequest> consumer)
void
QueryRequest. forEachFacet(java.util.function.Consumer<FacetRequest> consumer)
Consume all requestedFacetRequests
withconsumer
.void
QueryFrame. setFacets(java.util.List<FacetRequest> value)
void
QueryRequest. setFacets(java.util.Collection<FacetRequest> facets)
Set theFacetRequest
s for this query -
Uses of FacetRequest in com.attivio.sdk.search.facet
Subclasses of FacetRequest in com.attivio.sdk.search.facet Modifier and Type Class Description class
DateFacetRequest
Calendar based date facet.class
FilterBasedFacetRequest
A FacetRequest whose buckets are defined byQueries
.class
RangeFacetRequest
A FacetRequest requesting counts for documents with values in specified ranges.class
SchemaFacetRequest
FacetRequest for getting the fields populated in documents for the search query.class
ScopeFacetRequest
Deprecated.UseFacetRequest
with aScopeVector
as the field instead.Methods in com.attivio.sdk.search.facet that return FacetRequest Modifier and Type Method Description FacetRequest
FacetRequest. clone()
FacetRequest
FacetRequest. getChildFacet()
Get the childFacetRequest
for multi-dimensional facets.protected static FacetRequest
FacetRequest. valueOf(FacetRequestFactory value)
static FacetRequest
FacetRequest. valueOf(java.lang.String value)
Parse a FacetRequest from a string.static FacetRequest
FilterBasedFacetRequest. valueOf(java.lang.String value)
Parse a FacetRequest from a string.Methods in com.attivio.sdk.search.facet with parameters of type FacetRequest Modifier and Type Method Description void
FacetRequest. setChildFacet(FacetRequest request)
Set the childFacetRequest
for multi-dimensional facets. -
Uses of FacetRequest in com.attivio.util.parser
Methods in com.attivio.util.parser that return FacetRequest Modifier and Type Method Description FacetRequest
FacetRequestFactory. createDateFacet()
FacetRequest
FacetRequestFactory. getFacetRequest()
static FacetRequest
FacetRequestFactory. toFacetRequest(FacetRequestFactory value)
Convert aFacetRequestFactory
to aFacetRequest
.Methods in com.attivio.util.parser with parameters of type FacetRequest Modifier and Type Method Description static FacetRequestFactory
FacetRequestFactory. valueOf(FacetRequest input)
Convert aFacetRequest
to aFacetRequestFactory
. -
Uses of FacetRequest in com.attivio.util.query
Methods in com.attivio.util.query with parameters of type FacetRequest Modifier and Type Method Description void
QueryTraverser. rewriteFacet(FacetRequest facet)
Method parameters in com.attivio.util.query with type arguments of type FacetRequest Modifier and Type Method Description void
QueryTraverser. rewriteFacets(java.util.Collection<FacetRequest> facets)
Rewrite any embedded queries infacets
usinghandler
.static void
QueryUtils. rewriteFacets(java.util.List<FacetRequest> facets, QueryHandler handler)
Rewrite any embedded queries infacets
usinghandler
. -
Uses of FacetRequest in com.attivio.util.serialization
Methods in com.attivio.util.serialization that return FacetRequest Modifier and Type Method Description FacetRequest
FacetRequestConverter. unmarshal(com.thoughtworks.xstream.io.HierarchicalStreamReader reader, com.thoughtworks.xstream.converters.UnmarshallingContext context)
static FacetRequest
FacetRequestConverter. unmarshal(com.thoughtworks.xstream.io.HierarchicalStreamReader reader, com.thoughtworks.xstream.converters.UnmarshallingContext context, com.thoughtworks.xstream.mapper.Mapper mapper)
Unmarshal a FacetRequest.Methods in com.attivio.util.serialization with parameters of type FacetRequest Modifier and Type Method Description static void
FacetRequestConverter. marshal(FacetRequest facet, com.thoughtworks.xstream.io.HierarchicalStreamWriter writer, com.thoughtworks.xstream.converters.MarshallingContext context, com.thoughtworks.xstream.mapper.Mapper mapper)
Marshal a FacetRequest (without the containing element).
-