Example usage for org.apache.commons.collections15.comparators NullComparator NullComparator

List of usage examples for org.apache.commons.collections15.comparators NullComparator NullComparator

Introduction

In this page you can find the example usage for org.apache.commons.collections15.comparators NullComparator NullComparator.

Prototype

public NullComparator(Comparator<T> nonNullComparator, boolean nullsAreHigh) 

Source Link

Document

Construct an instance that sorts null higher or lower than any non-null object it is compared with.

Usage

From source file:gov.nih.nci.cabig.ctms.lang.ComparisonTools.java

private static <T> NullComparator<T> nullsLowComparator() {
    return new NullComparator<T>(ComparableComparator.<T>getInstance(), false);
}