When this finds null objects, it orders them before all other objects. @author Jesse Wilson
null
105106107108109110111
/** * @see #PropertyColumnTableDescription(String, Class, int, Comparator) */ public PropertyColumnTableDescription(final String id, Class forEntityType) { this(id, forEntityType, new ComparableComparator()); }
113114115116117118119
/** * @see #PropertyColumnTableDescription(String, Class, int, Comparator) */ public PropertyColumnTableDescription(final String id, Class forEntityType, int numberOfColumns) { this(id, forEntityType, numberOfColumns, new ComparableComparator()); }