Package org.apache.lucene.facet.index.attributes

Examples of org.apache.lucene.facet.index.attributes.CategoryProperty


    int nProperties = in.readInt();
    if (nProperties == 0) {
      addCategory(cp);
    } else {
      for (int j = 0; j < nProperties; j++) {
        CategoryProperty property = (CategoryProperty) in.readObject();
        addCategory(cp, property);
      }
    }
  }
View Full Code Here


    int nProperties = in.readInt();
    if (nProperties == 0) {
      addCategory(cp);
    } else {
      for (int j = 0; j < nProperties; j++) {
        CategoryProperty property = (CategoryProperty) in.readObject();
        addCategory(cp, property);
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.apache.lucene.facet.index.attributes.CategoryProperty

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.