Uses of Class
org.apache.lucene.facet.index.params.CategoryListParams
-
Packages that use CategoryListParams Package Description org.apache.lucene.facet.enhancements.params Enhanced category featuresorg.apache.lucene.facet.index Indexing of document categoriesorg.apache.lucene.facet.index.params Indexing-time specifications for handling facetsorg.apache.lucene.facet.search.cache Caching to speed up facets accumulation.org.apache.lucene.facet.util Various utilities for faceted search -
-
Uses of CategoryListParams in org.apache.lucene.facet.enhancements.params
Constructors in org.apache.lucene.facet.enhancements.params with parameters of type CategoryListParams Constructor Description DefaultEnhancementsIndexingParams(CategoryListParams categoryListParams, CategoryEnhancement... enhancements)
Construct with certainenhancements
andCategoryListParams
-
Uses of CategoryListParams in org.apache.lucene.facet.index
Constructors in org.apache.lucene.facet.index with parameters of type CategoryListParams Constructor Description FacetsPayloadProcessor(CategoryListParams params, int[] ordinalMap)
-
Uses of CategoryListParams in org.apache.lucene.facet.index.params
Methods in org.apache.lucene.facet.index.params that return CategoryListParams Modifier and Type Method Description CategoryListParams
DefaultFacetIndexingParams. getCategoryListParams(CategoryPath category)
CategoryListParams
FacetIndexingParams. getCategoryListParams(CategoryPath category)
The name of the category-list to put this category in, or null if this category should not be aggregatable.CategoryListParams
PerDimensionIndexingParams. getCategoryListParams(CategoryPath category)
Get the CategoryListParams based on the dimension or "zero-th category" of the specified CategoryPath.Methods in org.apache.lucene.facet.index.params that return types with arguments of type CategoryListParams Modifier and Type Method Description Iterable<CategoryListParams>
DefaultFacetIndexingParams. getAllCategoryListParams()
Iterable<CategoryListParams>
FacetIndexingParams. getAllCategoryListParams()
Return info about all category lists in the index.Iterable<CategoryListParams>
PerDimensionIndexingParams. getAllCategoryListParams()
Get all the categoryListParams, including the default.Methods in org.apache.lucene.facet.index.params with parameters of type CategoryListParams Modifier and Type Method Description void
PerDimensionIndexingParams. addCategoryListParams(CategoryPath category, CategoryListParams clParams)
Add a CategoryListParams for a given CategoryPath's dimension or "zero-th" category.Constructors in org.apache.lucene.facet.index.params with parameters of type CategoryListParams Constructor Description DefaultFacetIndexingParams(CategoryListParams categoryListParams)
PerDimensionIndexingParams(CategoryListParams categoryListParams)
Construct with the included categoryListParams as the default CategoryListParams for unspecified CategoryPaths. -
Uses of CategoryListParams in org.apache.lucene.facet.search.cache
Methods in org.apache.lucene.facet.search.cache with parameters of type CategoryListParams Modifier and Type Method Description CategoryListData
CategoryListCache. get(CategoryListParams clp)
Fetch the cachedCategoryListData
for a givenCategoryListParams
.void
CategoryListCache. loadAndRegister(CategoryListParams clp, IndexReader reader, TaxonomyReader taxo, FacetIndexingParams iparams)
Load and registerCategoryListData
.void
CategoryListCache. register(CategoryListParams clp, CategoryListData clData)
Register a pre-computedCategoryListData
. -
Uses of CategoryListParams in org.apache.lucene.facet.util
Methods in org.apache.lucene.facet.util with parameters of type CategoryListParams Modifier and Type Method Description static String
PartitionsUtils. partitionName(CategoryListParams clParams, int partition)
Partition name by its numberstatic String
PartitionsUtils. partitionNameByOrdinal(FacetIndexingParams iParams, CategoryListParams clParams, int ordinal)
Partition name by category ordinal
-