RawDataSet Class: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(69 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Template:APIClass|RawDataSet Class|RawDataSet}}  
{{Template:API}}{{Template:APIBreadcrumb}}


=== Constructors ===


*'''[[Public Sub Clear]]''' {{APIComment|Clears all data rows.}}
<onlyinclude>Represents a Synthesis Data Warehouse (SDW) data collection.</onlyinclude>
*'''[[AnalyticalDataSetType]]''' {{APIComment|Application that created the analytical data set.}}
 
*'''[[RawDataSet]]''' {{APIComment|Class representing an raw data set that can be saved in the repository.}}
==Constructor==
*'''[[ExtractedName]]''' {{APIComment|Sets or returns ExtractedName text}}
{| {{APITable}}
*'''[[ExtractedBy]]''' {{APIComment|Sets or returns ExtractedBy text}}
|-
*'''[[ExtractedType]]''' {{APIComment|Sets or returns ExtractedType}}
| style="width: 150px;"|RawDataSet||Creates an instance of the RawDataSet class.
*'''[[ExtractedDate]]''' {{APIComment|Sets or returns ExtractedDate as a date}}
|}
*'''[[SourceID]]''' {{APIComment|Sets or returns value for SourceID}}
 
 
== Methods ==
{| {{APITable}}
|-
| style="width: 150px;"|[[AddDataRow Method|AddDataRow]]||{{:AddDataRow Method}}
|-
|Clear||Clears all data points saved in the RawDataSet object.
|}
 
 
== Properties ==
{| {{APITable}}
|-
| style="width: 150px;"|ExtractedBy||Gets or sets the display name of the database user who brought the data collection into the SDW. '''String'''.
|-
|ExtractedDate||Gets or sets the date when the data collection was brought into the SDW. '''Date'''.
|-
|ExtractedName||Gets or sets the name of the data collection. '''String'''.
|-
|ExtractedType||Gets or sets a value from the '''[[RawDataSetType Enumeration|RawDataSetType]]''' enumeration, which specifies whether the data set is for use with Weibull++ or RGA. Default value = 1 (use with Weibull++).
|-
|SourceID||Gets or sets the numeric ID of the data set. '''Integer'''.
|}
 
 
 
 
 
==See Also==
*[[Repository.DataWarehouse.SaveRawDataSet]]

Latest revision as of 22:21, 29 April 2016

APIWiki.png


Member of: SynthesisAPI


Represents a Synthesis Data Warehouse (SDW) data collection.

Constructor

Name Description
RawDataSet Creates an instance of the RawDataSet class.


Methods

Name Description
AddDataRow Adds a new RawData object, which represents a data point, to the SDW data collection.
Clear Clears all data points saved in the RawDataSet object.


Properties

Name Description
ExtractedBy Gets or sets the display name of the database user who brought the data collection into the SDW. String.
ExtractedDate Gets or sets the date when the data collection was brought into the SDW. Date.
ExtractedName Gets or sets the name of the data collection. String.
ExtractedType Gets or sets a value from the RawDataSetType enumeration, which specifies whether the data set is for use with Weibull++ or RGA. Default value = 1 (use with Weibull++).
SourceID Gets or sets the numeric ID of the data set. Integer.



See Also