Package org.elasticsearch.index.field.data.strings

Examples of org.elasticsearch.index.field.data.strings.StringOrdValFieldDataComparator


    public static final GeoPointFieldDataType TYPE = new GeoPointFieldDataType();

    @Override public ExtendedFieldComparatorSource newFieldComparatorSource(final FieldDataCache cache, final String missing) {
        return new ExtendedFieldComparatorSource() {
            @Override public FieldComparator newComparator(String fieldname, int numHits, int sortPos, boolean reversed) throws IOException {
                return new StringOrdValFieldDataComparator(numHits, fieldname, sortPos, reversed, cache);
            }

            @Override public int reducedType() {
                return SortField.STRING;
            }
View Full Code Here

TOP

Related Classes of org.elasticsearch.index.field.data.strings.StringOrdValFieldDataComparator

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.