Package org.springframework.springfaces.traveladvisor.domain

Examples of org.springframework.springfaces.traveladvisor.domain.Rating.ordinal()


  @Value("#{review}")
  private ReviewDetails review;

  public Double getValue() {
    Rating rating = review.getRating();
    return (rating == null ? null : (double) rating.ordinal());
  }

  public void setValue(Double value) {
    Rating rating = value == null ? null : Rating.values()[value.intValue()];
    review.setRating(rating);
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.