javadoc fix

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@996961 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Grant Ingersoll 2010-09-14 15:50:42 +00:00
parent f4d106b4d0
commit 92039eebaa
1 changed files with 4 additions and 3 deletions

View File

@ -36,8 +36,9 @@ import org.apache.solr.schema.SpatialQueryable;
/**
* Creates a spatial Filter based on the type of spatial point used.
* <p/>
* The field must implement XXXX
* The field must implement {@link org.apache.solr.schema.SpatialQueryable}
* <p/>
* All units are in Kilometers
* <p/>
* <p/>
* Syntax:
@ -48,9 +49,9 @@ import org.apache.solr.schema.SpatialQueryable;
* <li>fl - The fields to filter on. Must implement XXXX. Required. If more than one, XXXX</li>
* <li>pt - The point to use as a reference. Must match the dimension of the field. Required.</li>
* <li>d - The distance in the units specified. Required.</li>
* <li>units - The units of the distance. K - kilometers, M - Miles. Optional. Default is miles.</li>
* <li>meas - The distance measure to use. Default is Euclidean (2-norm). If a number between 0-INF is used, then the Vector Distance is used. hsin = Haversine, sqe = Squared Euclidean</li>
* </ul>
* </ul> *
*
*/
public class SpatialFilterQParser extends QParser {