Package fr.inra.lipm.jezlucene.cfg.DocField

Examples of fr.inra.lipm.jezlucene.cfg.DocField.ValueType


        return this.indexUnit;
    }

    private DocField buildField(final String name, final String pattern, final String type, final String option) {
        FieldType fieldType;
        ValueType valueType;

        if (type.equals("Keyword")) {
            fieldType = StringField.TYPE_STORED;
            valueType = ValueType.STRING;
        }
View Full Code Here

TOP

Related Classes of fr.inra.lipm.jezlucene.cfg.DocField.ValueType

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.