DataModelTableCollection

DataModelTableCollection class

Represents the list of the data model table.

class DataModelTableCollection implements Iterable<DataModelTable>;

Methods

MethodDescription
get(number)Gets the data model table by position of the collection.
get(string)Gets the data model table by the name.
getCount()@deprecated. Please use the ‘count’ property instead. Gets the number of elements contained in.
isNull()Checks whether the implementation object is null.

[Symbol.iterator](): Iterator<DataModelTable>

Returns an iterator over the items in the collection. Enables use of for...of, spread syntax, and Array.from().

get(number)

Gets the data model table by position of the collection.

get(index: number) : DataModelTable;

Parameters:

ParameterTypeDescription
indexnumberThe position of the collection.

Returns

DataModelTable

get(string)

Gets the data model table by the name.

get(name: string) : DataModelTable;

Parameters:

ParameterTypeDescription
namestringThe name of data model table.

Returns

DataModelTable

getCount()

@deprecated. Please use the ‘count’ property instead. Gets the number of elements contained in.

getCount() : number;

isNull()

Checks whether the implementation object is null.

isNull() : boolean;