Tabnine Logo
CalendarDateRange.toDateRange
Code IndexAdd Tabnine to your IDE (free)

How to use
toDateRange
method
in
ucar.nc2.time.CalendarDateRange

Best Java code snippets using ucar.nc2.time.CalendarDateRange.toDateRange (Showing top 17 results out of 315)

origin: edu.ucar/netcdf

/**
 * set TimeCoverage from a CalendarDateRange
 * @param cdc set CalendarDateRange to this
 */
public void setTimeCoverage(CalendarDateRange cdc) {
 this.timeCoverage = cdc.toDateRange();
}
origin: Unidata/thredds

/**
 * set TimeCoverage from a CalendarDateRange
 * @param cdc set CalendarDateRange to this
 */
public void setTimeCoverage(CalendarDateRange cdc) {
 if (cdc == null) return;
 this.timeCoverage = cdc.toDateRange();
}
origin: edu.ucar/cdm

/**
 * set TimeCoverage from a CalendarDateRange
 * @param cdc set CalendarDateRange to this
 */
public void setTimeCoverage(CalendarDateRange cdc) {
 if (cdc == null) return;
 this.timeCoverage = cdc.toDateRange();
}
origin: edu.ucar/cdm

public DateRange getDateRange() {
 return (dateRange == null) ? null : dateRange.toDateRange();
}
origin: edu.ucar/netcdf

public DateRange getDateRange() {
 return (dateRange == null) ? null : dateRange.toDateRange();
}
origin: edu.ucar/netcdf

public DateRange getDateRange() { return (dateRange == null) ? null : dateRange.toDateRange(); }
public Date getStartDate() { return (getDateRange() == null) ? null : getDateRange().getStart().getDate(); }
origin: edu.ucar/cdm

public DateRange getDateRange() { return (dateRange == null) ? null : dateRange.toDateRange(); }
public Date getStartDate() { return (getDateRange() == null) ? null : getDateRange().getStart().getDate(); }
origin: edu.ucar/netcdf

/**
 * @deprecated use getCalendarDateRange
 */
public DateRange getDateRange() {
 CalendarDateRange cdr = getCalendarDateRange();
 return (cdr != null) ? cdr.toDateRange() : null;
}
origin: edu.ucar/netcdf

 /**
 * Does not handle non-standard Calendars
 * @deprecated use getCalendarDateRange()
 */
public DateRange getDateRange() {
 CalendarDateRange cdr = getCalendarDateRange();
 return cdr.toDateRange();
}
origin: edu.ucar/cdm

 /**
 * Does not handle non-standard Calendars
 * @deprecated use getCalendarDateRange()
 */
public DateRange getDateRange() {
 CalendarDateRange cdr = getCalendarDateRange();
 return cdr.toDateRange();
}
origin: Unidata/thredds

/**
 * @deprecated use getCalendarDateRange
 */
public DateRange getDateRange() {
 CalendarDateRange cdr = getCalendarDateRange();
 return (cdr != null) ? cdr.toDateRange() : null;
}
origin: edu.ucar/cdm

/**
 * @deprecated use getCalendarDateRange
 */
public DateRange getDateRange() {
 CalendarDateRange cdr = getCalendarDateRange();
 return (cdr != null) ? cdr.toDateRange() : null;
}
origin: edu.ucar/netcdf

@Override
public DateRange getDateRange() {
 return getCalendarDateRange().toDateRange();
}
origin: Unidata/thredds

 /**
 * Does not handle non-standard Calendars
 * @deprecated use getCalendarDateRange()
 */
public DateRange getDateRange() {
 CalendarDateRange cdr = getCalendarDateRange();
 return cdr.toDateRange();
}
origin: edu.ucar/netcdf

public DateRange getDateRange() {
 CalendarDateRange cdr = getCalendarDateRange();
 return (cdr != null) ? cdr.toDateRange() : null;
}
origin: edu.ucar/cdm

@Override
public DateRange getDateRange() {
 return getCalendarDateRange().toDateRange();
}
origin: edu.ucar/cdm

public DateRange getDateRange() {
 CalendarDateRange cdr = getCalendarDateRange();
 return (cdr != null) ? cdr.toDateRange() : null;
}
ucar.nc2.timeCalendarDateRangetoDateRange

Javadoc

Does not handle non-standard calendars

Popular methods of CalendarDateRange

  • of
    Does not handle non-standard calendars
  • extend
  • getEnd
  • getStart
  • getDurationInSecs
  • getResolution
  • includes
  • intersects
  • <init>
  • getDuration
  • intersect
  • equals
  • intersect,
  • equals,
  • hashCode,
  • isPoint

Popular in Java

  • Making http post requests using okhttp
  • onCreateOptionsMenu (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • startActivity (Activity)
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • JCheckBox (javax.swing)
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Option (scala)
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now