net.simplace.client.simulation.lap.util.helper.diurnal.ComparableWeatherEntry

Objects for sortable weather entries Holds date, minTemp, maxTemp, radiation and key value Implements compareTo by comparing the dates.


public class ComparableWeatherEntry implements java.lang.Comparable {
// Public Constructors
public ComparableWeatherEntry(LocalDateTime d, double minT, double maxT,
double rad, Object k);

// Public Instance Variables
public LocalDateTime date;
public Double minTemp;
public Double maxTemp;
public Double radiation;
public Object key;

// Public Instance Methods
public int compareTo(ComparableWeatherEntry o);



}



Passed to: compareTo()