Package proj.zoie.api.DocIDMapper

Examples of proj.zoie.api.DocIDMapper.DocIDArray


      {
        ansList2[i] = mapper.getDocID(qryList[i]);
      }

      assertTrue("wrong result", Arrays.equals(ansList1, ansList2));
      DocIDArray result = mapper.getDocIDArray(qryList);
      int[] resarr = result.docids;
      for(int i = 0; i < qryList.length; i++)
      {
        assertEquals("wrong result", ansList2[i], resarr[i]);
      }
      result.close();
    }

  }
View Full Code Here

TOP

Related Classes of proj.zoie.api.DocIDMapper.DocIDArray

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.