Uses of Class
com.jstatcom.ts.TSTypes

Packages that use TSTypes
com.jstatcom.ts Components and data types related to time series analysis. 
 

Uses of TSTypes in com.jstatcom.ts
 

Fields in com.jstatcom.ts declared as TSTypes
static TSTypes TSTypes.DETERMINISTIC
          Type for deterministic series.
static TSTypes TSTypes.ENDOGENOUS
          Type for endogenous series.
static TSTypes TSTypes.EXOGENOUS
          Type for exogenous series.
 

Methods in com.jstatcom.ts that return TSTypes
 TSTypes TS.type()
          Gets the type of this time series.
static TSTypes TSTypes.valueOf(java.lang.String str)
          Factory method that gets a reference to the static type from an identifying string.
 

Methods in com.jstatcom.ts with parameters of type TSTypes
 void TS.setTSType(TSTypes newTSType)
          Sets the type of this time series.
 

Constructors in com.jstatcom.ts with parameters of type TSTypes
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.