Package org.hibernate.search.query.engine.impl

Examples of org.hibernate.search.query.engine.impl.DocumentExtractorImpl.extract()


        0, 0, //not used in this case
        targetedClasses
    );
    HashSet<String> titles = new HashSet<String>( 3 );
    for ( int id = 0; id < hits.totalHits; id++ ) {
      Long documentId = (Long) extractor.extract( id ).getId();
      String projectedTitle = (String) extractor.extract( id ).getProjection()[0];
      assertNotNull( projectedTitle );
      titles.add( projectedTitle );
    }
    assertTrue( titles.contains( "Regular goat" ) );
View Full Code Here


        targetedClasses
    );
    HashSet<String> titles = new HashSet<String>( 3 );
    for ( int id = 0; id < hits.totalHits; id++ ) {
      Long documentId = (Long) extractor.extract( id ).getId();
      String projectedTitle = (String) extractor.extract( id ).getProjection()[0];
      assertNotNull( projectedTitle );
      titles.add( projectedTitle );
    }
    assertTrue( titles.contains( "Regular goat" ) );
    assertTrue( titles.contains( "Mini Goat" ) );
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.