thredds.inventory.DateExtractor Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 1998-2018 University Corporation for Atmospheric Research/Unidata
* See LICENSE for license information.
*/
package thredds.inventory;
import ucar.nc2.time.CalendarDate;
import java.util.Date;
/**
* Knows how to extract a date from a MFile.
*
* @author caron
* @since Jun 26, 2009
*/
public interface DateExtractor {
Date getDate(MFile mfile); // deprecate
CalendarDate getCalendarDate(MFile mfile);
CalendarDate getCalendarDateFromPath(String path);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy