当前位置: 首页>>代码示例>>Java>>正文


Java FacetsConfig.DimConfig方法代码示例

本文整理汇总了Java中org.apache.lucene.facet.FacetsConfig.DimConfig方法的典型用法代码示例。如果您正苦于以下问题:Java FacetsConfig.DimConfig方法的具体用法?Java FacetsConfig.DimConfig怎么用?Java FacetsConfig.DimConfig使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.lucene.facet.FacetsConfig的用法示例。


在下文中一共展示了FacetsConfig.DimConfig方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getAllDims

import org.apache.lucene.facet.FacetsConfig; //导入方法依赖的package包/类
@Override
public List<FacetResult> getAllDims(int topN) throws IOException {
  int ord = children[TaxonomyReader.ROOT_ORDINAL];
  List<FacetResult> results = new ArrayList<>();
  while (ord != TaxonomyReader.INVALID_ORDINAL) {
    String dim = taxoReader.getPath(ord).components[0];
    FacetsConfig.DimConfig dimConfig = config.getDimConfig(dim);
    if (dimConfig.indexFieldName.equals(indexFieldName)) {
      FacetResult result = getTopChildren(topN, dim);
      if (result != null) {
        results.add(result);
      }
    }
    ord = siblings[ord];
  }

  // Sort by highest value, tie break by dim:
  Collections.sort(results, BY_VALUE_THEN_DIM);
  return results;
}
 
开发者ID:europeana,项目名称:search,代码行数:21,代码来源:TaxonomyFacets.java

示例2: getAllDims

import org.apache.lucene.facet.FacetsConfig; //导入方法依赖的package包/类
@Override
public List<FacetResult> getAllDims(int topN) throws IOException {
  int ord = children[TaxonomyReader.ROOT_ORDINAL];
  List<FacetResult> results = new ArrayList<FacetResult>();
  while (ord != TaxonomyReader.INVALID_ORDINAL) {
    String dim = taxoReader.getPath(ord).components[0];
    FacetsConfig.DimConfig dimConfig = config.getDimConfig(dim);
    if (dimConfig.indexFieldName.equals(indexFieldName)) {
      FacetResult result = getTopChildren(topN, dim);
      if (result != null) {
        results.add(result);
      }
    }
    ord = siblings[ord];
  }

  // Sort by highest value, tie break by dim:
  Collections.sort(results, BY_VALUE_THEN_DIM);
  return results;
}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:21,代码来源:TaxonomyFacets.java

示例3: verifyDim

import org.apache.lucene.facet.FacetsConfig; //导入方法依赖的package包/类
/** Throws {@code IllegalArgumentException} if the
 *  dimension is not recognized.  Otherwise, returns the
 *  {@link DimConfig} for this dimension. */
protected FacetsConfig.DimConfig verifyDim(String dim) {
  FacetsConfig.DimConfig dimConfig = config.getDimConfig(dim);
  if (!dimConfig.indexFieldName.equals(indexFieldName)) {
    throw new IllegalArgumentException("dimension \"" + dim + "\" was not indexed into field \"" + indexFieldName);
  }
  return dimConfig;
}
 
开发者ID:europeana,项目名称:search,代码行数:11,代码来源:TaxonomyFacets.java

示例4: verifyDim

import org.apache.lucene.facet.FacetsConfig; //导入方法依赖的package包/类
protected FacetsConfig.DimConfig verifyDim(String dim) {
    return this.config.getDimConfig(dim);
}
 
开发者ID:seecr,项目名称:meresco-lucene,代码行数:4,代码来源:MerescoTaxonomyFacetCounts.java


注:本文中的org.apache.lucene.facet.FacetsConfig.DimConfig方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。