Examples of Boost


Examples of org.hibernate.search.annotations.Boost

  private float getBoost(XClass element) {
    float boost = 1.0f;
    if ( element == null ) {
      return boost;
    }
    Boost boostAnnotation = element.getAnnotation( Boost.class );
    if ( boostAnnotation != null ) {
      boost = boostAnnotation.value();
    }
    return boost;
  }
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.