Package org.apache.lucene.spatial.tier

Examples of org.apache.lucene.spatial.tier.DistanceFieldComparatorSource


     */
    public final SortField getSortField()
        throws ParseException {
        if (sortField == null) {
            final FieldComparatorSource dfcs =
                new DistanceFieldComparatorSource(getDistanceFilter());
            sortField = new SortField("dummy", dfcs);
        }
        return sortField;
    }
View Full Code Here

TOP

Related Classes of org.apache.lucene.spatial.tier.DistanceFieldComparatorSource

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.