Package proj.zoie.impl.indexing.internal

Examples of proj.zoie.impl.indexing.internal.DefaultRAMIndexFactory


  /**
   * @return the RAMIndexFactory in this ZoieConfig. If the value is null, return the DefaultRAMIndexFactory Factory.
   */
  public RAMIndexFactory getRamIndexFactory()
  {
    if (ramIndexFactory == null) return new DefaultRAMIndexFactory();
    return ramIndexFactory;
  }
View Full Code Here


   * @return the RAMIndexFactory in this ZoieConfig. If the value is null, return the DefaultRAMIndexFactory Factory.
   */
  @SuppressWarnings("rawtypes")
  public RAMIndexFactory<?> getRamIndexFactory() {
    if (ramIndexFactory == null) {
      return new DefaultRAMIndexFactory();
    }
    return ramIndexFactory;
  }
View Full Code Here

TOP

Related Classes of proj.zoie.impl.indexing.internal.DefaultRAMIndexFactory

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.