Examples of phrase()


Examples of org.hibernate.search.query.dsl.QueryBuilder.phrase()

    assertEquals(
        "test exact phrase", 1, fullTextSession.createFullTextQuery( query, Month.class ).getResultSize()
    );

    query = monthQb
        .phrase()
          .onField( "mythology" )
          .sentence( "Month whitening" )
          .createQuery();
View Full Code Here

Examples of org.hibernate.search.query.dsl.QueryBuilder.phrase()

          .sentence( "Month whitening" )
          .createQuery();

    assertEquals( "test slop", 0, fullTextSession.createFullTextQuery( query, Month.class ).getResultSize() );

    query = monthQb
        .phrase()
          .withSlop( 3 )
          .onField( "mythology" )
          .sentence( "Month whitening" )
          .createQuery();
View Full Code Here

Examples of org.hibernate.search.query.dsl.QueryBuilder.phrase()

          .sentence( "Month whitening" )
          .createQuery();

    assertEquals( "test slop", 1, fullTextSession.createFullTextQuery( query, Month.class ).getResultSize() );

    query = monthQb
        .phrase()
          .onField( "mythology" )
          .sentence( "whitening" )
          .createQuery();
View Full Code Here

Examples of org.hibernate.search.query.dsl.QueryBuilder.phrase()

  public void testPhraseQueryWithNoTermsAfterAnalyzerApplication() throws Exception {
    Transaction transaction = fullTextSession.beginTransaction();
    final QueryBuilder monthQb = fullTextSession.getSearchFactory()
        .buildQueryBuilder().forEntity( Month.class ).get();

    Query query = monthQb.
        phrase()
        .onField( "mythology" )
        .sentence( "and" )
        .createQuery();
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.