Uses of Class
com.jstatcom.ts.TSDateRange

Packages that use TSDateRange
com.jstatcom.model Data model and Symbol Management systems. 
com.jstatcom.ts Components and data types related to time series analysis. 
com.jstatcom.util Utility classes shared by other packages. 
 

Uses of TSDateRange in com.jstatcom.model
 

Methods in com.jstatcom.model that return TSDateRange
 TSDateRange JSCDRange.getTSDateRange()
          Gets the stored date object.
 

Methods in com.jstatcom.model with parameters of type TSDateRange
 void JSCDRange.setVal(TSDateRange newRange)
          Sets a new value to this date adapter.
 

Constructors in com.jstatcom.model with parameters of type TSDateRange
JSCDRange(java.lang.String name, TSDateRange tsRange)
          Creates a JSCDRange for a given TSDateRange.
 

Uses of TSDateRange in com.jstatcom.ts
 

Methods in com.jstatcom.ts that return TSDateRange
 TSDateRange TSDateRange.addPeriodsToStart(int periods)
          Gets a new TSDateRange range object with the start date shifted by periods.
 TSDateRange TSDateRange.commonRange(TSDateRange otherRange)
          Returns the biggest date range that is common to this range and another range.
 TSDateRange TSDateRangeSelector.getEnclosingRange()
          Gets the overall range that the selected range must be in with.
static TSDateRange TSDateRange.getMergedRange(TS[] tsArray)
          Gets the merged range of all time series in the given array.
 TSDateRange TSDateSelector.getRange()
          Gets the range that the selected date must be in with.
 TSDateRange TSDateRangeSelector.getTSDateRange()
          Gets the currently displayed date range.
 TSDateRange TSDateRange.mergedRange(TSDateRange otherRange)
          Returns the merged date range that starts at the earliest start date and ends at the latest enddate.
 TSDateRange TS.range()
          Returns the TSDateRange defining the beginning and the end of this time series.
static TSDateRange TSDateRange.valueOf(java.lang.String exp)
          Static initializer that creates a TSDateRange from a string representation.
 

Methods in com.jstatcom.ts with parameters of type TSDateRange
 TSDateRange TSDateRange.commonRange(TSDateRange otherRange)
          Returns the biggest date range that is common to this range and another range.
 double[] TSDateRange.createShiftDum(TSDateRange shiftRange)
          Creates a double[] that is a shift dummy for this range, see createShiftDumTS(java.lang.String, com.jstatcom.ts.TSDateRange).
 TS TSDateRange.createShiftDumTS(java.lang.String name, TSDateRange shiftRange)
          Creates a time series that is a shift dummy for this range.
 double[] TSDateRange.createTrendShiftDum(TSDateRange shiftRange)
          Creates a double[] that is a trend shift dummy for this range, see createTrendShiftDumTS(java.lang.String, com.jstatcom.ts.TSDateRange).
 TS TSDateRange.createTrendShiftDumTS(java.lang.String name, TSDateRange shiftRange)
          Creates a time series that is a trend shift dummy for this range.
 java.lang.String TSDateRange.encloses(TSDateRange otherRange)
          Checks whether a given date range is included within the range defined by this object.
 int[] TSDateRange.indicesForRange(TSDateRange otherRange)
          Computes the indices that a date range has within the range specified by this object, starting with 0.
 TSDateRange TSDateRange.mergedRange(TSDateRange otherRange)
          Returns the merged date range that starts at the earliest start date and ends at the latest enddate.
 void TSDateSelector.setEnclosingRange(TSDateRange newOverallRange)
          Sets the range that the selected date must be in with.
 void TSDateRangeSelector.setEnclosingRange(TSDateRange newOverallRange)
          Sets the overall range that the selected range must be in with.
 void TSDateRangeSelector.setTSDateRange(TSDateRange newTSDateRange)
          Sets the currently displayed date range if it conforms to the specified overall range.
 

Uses of TSDateRange in com.jstatcom.util
 

Methods in com.jstatcom.util with parameters of type TSDateRange
static JSCNArray UData.createDeterministic(TSDateRange range, JSCNArray dummies, boolean isIntercept, boolean isSeasDum, boolean isSeasDumCentered, boolean isTrend, java.lang.String newName)
          Creates a data object with the deterministic variables to be used for estimation according to the parametrization.