Options
All
  • Public
  • Public/Protected
  • All
Menu

Class RawDataCollection

Describes a list of raw data information with additional functions to access certain entries. You can iterate over the collection like the following:

  • const rawDataCollection = piweb.data.getRawDataCollection();
    for (let rawDataItem of rawDataCollection)
    {
     ...
    }
    

Hierarchy

  • RawDataCollection

Index

Constructors

Private constructor

Accessors

length

  • get length(): number
  • Gets the total number of items in this collection.

    Returns number

Methods

Private __@iterator

  • Returns Iterator<RawDataItem>

findByEntity

findByName

  • findByName(...wildcards: string[]): Iter<RawDataItem>
  • Returns the items that match one or more of the specified filter strings.

    Parameters

    • Rest ...wildcards: string[]

      One or more filter strings. Wildcards like '*' are allowed.

    Returns Iter<RawDataItem>

Private first

  • Returns RawDataItem | undefined

iter

  • Returns an iter over all raw data items.

    Returns Iter<RawDataItem>

Generated using TypeDoc