Package org.springframework.util.comparator

Examples of org.springframework.util.comparator.NullSafeComparator


   * @param comparator
   *            the comparator, may be null
   */
  protected ComparisonBinaryPredicate(Comparator comparator) {
    if (!(comparator instanceof NullSafeComparator)) {
      this.comparator = new NullSafeComparator(comparator, true);
    }
    else {
      this.comparator = comparator;
    }
  }
View Full Code Here

TOP

Related Classes of org.springframework.util.comparator.NullSafeComparator

Copyright © 2018 www.massapicom. 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.