All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lumongo.server.index.field.LongFieldIndexer Maven / Gradle / Ivy

The newest version!
package org.lumongo.server.index.field;

import org.apache.lucene.document.Field;
import org.apache.lucene.document.LongPoint;

public class LongFieldIndexer extends NumericFieldIndexer {

	public static final LongFieldIndexer INSTANCE = new LongFieldIndexer();

	protected LongFieldIndexer() {

	}

	@Override
	protected Field createField(Number o, String indexedFieldName) {
		return new LongPoint(indexedFieldName, o.longValue());
	}

	@Override
	protected Number parseString(String value) {
		return Long.parseLong(value);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy