Package org.springframework.data.solr.core.query

Examples of org.springframework.data.solr.core.query.Criteria.lessThan()


        return criteria.greaterThan(appendBoostAndGetParameterValue(criteria, parameters));
      case GREATER_THAN_EQUAL:
        return criteria.greaterThanEqual(appendBoostAndGetParameterValue(criteria, parameters));
      case BEFORE:
      case LESS_THAN:
        return criteria.lessThan(appendBoostAndGetParameterValue(criteria, parameters));
      case LESS_THAN_EQUAL:
        return criteria.lessThanEqual(appendBoostAndGetParameterValue(criteria, parameters));
      case BETWEEN:
        return criteria.between(appendBoostAndGetParameterValue(criteria, parameters),
            appendBoostAndGetParameterValue(criteria, parameters));
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.