Package com.browseengine.bobo.facets.impl.GeoFacetHandler

Examples of com.browseengine.bobo.facets.impl.GeoFacetHandler.GeoFacetData


  @Override
  public RandomAccessDocIdSet getRandomAccessDocIdSet(BoboIndexReader reader)
      throws IOException {
    int maxDoc = reader.maxDoc();

    final GeoFacetData dataCache = _handler.getFacetData(reader);
    return new GeoDocIdSet(dataCache.get_xValArray(), dataCache.get_yValArray(), dataCache.get_zValArray(),
        _lat, _lon, _rad, maxDoc, _miles);
  }
View Full Code Here


   */
  @Override
  public RandomAccessDocIdSet getRandomAccessDocIdSet(BoboSegmentReader reader) throws IOException {
    int maxDoc = reader.maxDoc();

    final GeoFacetData dataCache = _handler.getFacetData(reader);
    return new GeoDocIdSet(dataCache.get_xValArray(), dataCache.get_yValArray(),
        dataCache.get_zValArray(), _lat, _lon, _rad, maxDoc, _miles);
  }
View Full Code Here

TOP

Related Classes of com.browseengine.bobo.facets.impl.GeoFacetHandler.GeoFacetData

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.