Uses of Class
com.jstatcom.ts.TSDate

Packages that use TSDate
com.jstatcom.io Input/output related classes as well as data import implementations. 
com.jstatcom.model Data model and Symbol Management systems. 
com.jstatcom.parser Various parsers generated by JavaCC. 
com.jstatcom.ts Components and data types related to time series analysis. 
 

Uses of TSDate in com.jstatcom.io
 

Methods in com.jstatcom.io that return TSDate
 TSDate TSExcelDialog.getTSDate()
          Gets the selected start date.
 TSDate TSDataDialog.getTSDate()
          Gets the selected start date.
 

Uses of TSDate in com.jstatcom.model
 

Methods in com.jstatcom.model that return TSDate
 TSDate JSCDate.getTSDate()
          Gets the stored date object.
 

Methods in com.jstatcom.model with parameters of type TSDate
 void JSCDate.setVal(TSDate newDate)
          Sets a new value to this date adapter.
 

Constructors in com.jstatcom.model with parameters of type TSDate
JSCDate(java.lang.String name, TSDate tsDate)
          Creates a JSCDate for a given TSDate.
 

Uses of TSDate in com.jstatcom.parser
 

Methods in com.jstatcom.parser that return TSDate
 TSDate TSDateParser.parseString(java.lang.String inputString, int subPeriodicity)
          Reinitializes this engine and parses an input String.
 

Uses of TSDate in com.jstatcom.ts
 

Methods in com.jstatcom.ts that return TSDate
 TSDate TSDate.addPeriods(int n)
          Adds n periods to a copy of the TSDate object.
 TSDate TSDateRange.dateForIndex(int index)
          Returns the date corresponding to an index respective to the range.
 TSDate TSTableModel.getStartTSDate()
          Gets the TSDate where the very first observation in the model occurs.
 TSDate TSDateSelector.getTSDate()
          Gets the currently displayed date.
 TSDate TSDateRange.lowerBound()
          Gets reference to start date of range.
 TSDate TS.start()
          Returns the date when the first observation in this TS occurs.
 TSDate TSDateRange.upperBound()
          Gets reference the last date of the range.
static TSDate TSDate.valueOf(java.lang.String exp)
          Static initializer that creates a TSDate from a string expression.
 

Methods in com.jstatcom.ts with parameters of type TSDate
 java.lang.String TSDateRange.encloses(TSDate date)
          Checks whether a given date is within the range defined by this object.
 int TSDateRange.indexForDate(TSDate date)
          Computes the index that a date has respective to the range specified by this object, starting with 0.
 void TSDateSelector.setEnclosingRange(TSDate newStart, int numberOfPeriods)
          Sets the range that the selected date must be in with by setting an initial date and the desired number of available periods within the range.
 void TSDateRangeSelector.setEnclosingRange(TSDate newStart, int numberOfPeriods)
          Sets the range that the selected range must be in with by setting an initial date and the desired number of available periods within the range.
 void TSDateSelector.setTSDate(TSDate newTSDate)
          Sets the currently displayed date if it conforms to the specified range.
 double TS.valueAt(TSDate date)
          Returns the observation at a given date.
 

Constructors in com.jstatcom.ts with parameters of type TSDate
TS(double[] newObservations, java.lang.String newName, TSDate newDate)
          Creates a TS object, with the type being guessed and the project is the default.
TS(double[] newObservations, java.lang.String newName, TSDate newDate, TSTypes tsType)
          Creates a TS object with the default project.
TS(double[] newObservations, java.lang.String newName, TSDate newDate, TSTypes tsType, TSProject newProject)
          Preferred constructor for a TS object with everything explicitely specified.
TSDateRange(TSDate t1, int numberOfObs)
          Creates TSDateRange from specified start date and number of observations.
TSDateRange(TSDate t1, TSDate t2)
          Creates TSDateRange from specified start date and end date.