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


Java FunctionQParser.getParam方法代码示例

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


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

示例1: parsePoint

import org.apache.solr.search.FunctionQParser; //导入方法依赖的package包/类
private MultiValueSource parsePoint(FunctionQParser fp) throws SyntaxError {
  String ptStr = fp.getParam(SpatialParams.POINT);
  if (ptStr == null) return null;
  Point point = SpatialUtils.parsePointSolrException(ptStr, SpatialContext.GEO);
  //assume Lat Lon order
  return new VectorValueSource(
      Arrays.<ValueSource>asList(new DoubleConstValueSource(point.getY()), new DoubleConstValueSource(point.getX())));
}
 
开发者ID:europeana,项目名称:search,代码行数:9,代码来源:GeoDistValueSourceParser.java

示例2: parseSfield

import org.apache.solr.search.FunctionQParser; //导入方法依赖的package包/类
private MultiValueSource parseSfield(FunctionQParser fp) throws SyntaxError {
  String sfield = fp.getParam(SpatialParams.FIELD);
  if (sfield == null) return null;
  SchemaField sf = fp.getReq().getSchema().getField(sfield);
  FieldType type = sf.getType();
  if (type instanceof AbstractSpatialFieldType) {
    AbstractSpatialFieldType asft = (AbstractSpatialFieldType) type;
    return new SpatialStrategyMultiValueSource(asft.getStrategy(sfield));
  }
  ValueSource vs = type.getValueSource(sf, fp);
  if (vs instanceof MultiValueSource) {
    return (MultiValueSource)vs;
  }
  throw new SyntaxError("Spatial field must implement MultiValueSource or extend AbstractSpatialFieldType:" + sf);
}
 
开发者ID:europeana,项目名称:search,代码行数:16,代码来源:GeoDistValueSourceParser.java

示例3: parsePoint

import org.apache.solr.search.FunctionQParser; //导入方法依赖的package包/类
private MultiValueSource parsePoint(FunctionQParser fp) throws SyntaxError {
    String pt = fp.getParam(SpatialParams.POINT);
    if (pt == null) return null;
    double[] point = null;
    try {
        point = ParseUtils.parseLatitudeLongitude(pt);
    } catch (InvalidShapeException e) {
        throw new SyntaxError("Bad spatial pt:" + pt);
    }
    return new VectorValueSource(Arrays.<ValueSource>asList(new DoubleConstValueSource(point[0]), new DoubleConstValueSource(point[1])));
}
 
开发者ID:gogobot,项目名称:solr-distance-cluster,代码行数:12,代码来源:DistanceParser.java

示例4: parseSfield

import org.apache.solr.search.FunctionQParser; //导入方法依赖的package包/类
private MultiValueSource parseSfield(FunctionQParser fp) throws SyntaxError {
    String sfield = fp.getParam(SpatialParams.FIELD);
    if (sfield == null) return null;
    SchemaField sf = fp.getReq().getSchema().getField(sfield);
    FieldType type = sf.getType();
    if (type instanceof AbstractSpatialFieldType) {
        AbstractSpatialFieldType asft = (AbstractSpatialFieldType) type;
        return new SpatialStrategyMultiValueSource(asft.getStrategy(sfield));
    }
    ValueSource vs = type.getValueSource(sf, fp);
    if (vs instanceof MultiValueSource) {
        return (MultiValueSource)vs;
    }
    throw new SyntaxError("Spatial field must implement MultiValueSource or extend AbstractSpatialFieldType:" + sf);
}
 
开发者ID:gogobot,项目名称:solr-distance-cluster,代码行数:16,代码来源:DistanceParser.java

示例5: parsePoint

import org.apache.solr.search.FunctionQParser; //导入方法依赖的package包/类
private static MultiValueSource parsePoint(FunctionQParser fp) throws SyntaxError {
  String pt = fp.getParam(SpatialParams.POINT);
  if (pt == null) return null;
  double[] point = null;
  try {
    point = ParseUtils.parseLatitudeLongitude(pt);
  } catch (InvalidShapeException e) {
    throw new SyntaxError("Bad spatial pt:" + pt);
  }
  return new VectorValueSource(Arrays.<ValueSource>asList(new DoubleConstValueSource(point[0]),new DoubleConstValueSource(point[1])));
}
 
开发者ID:pkarmstr,项目名称:NYBC,代码行数:12,代码来源:HaversineConstFunction.java

示例6: parseSfield

import org.apache.solr.search.FunctionQParser; //导入方法依赖的package包/类
private static MultiValueSource parseSfield(FunctionQParser fp) throws SyntaxError {
  String sfield = fp.getParam(SpatialParams.FIELD);
  if (sfield == null) return null;
  SchemaField sf = fp.getReq().getSchema().getField(sfield);
  ValueSource vs = sf.getType().getValueSource(sf, fp);
  if (!(vs instanceof MultiValueSource)) {
    throw new SyntaxError("Spatial field must implement MultiValueSource:" + sf);
  }
  return (MultiValueSource)vs;
}
 
开发者ID:pkarmstr,项目名称:NYBC,代码行数:11,代码来源:HaversineConstFunction.java


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