UNPKG

datamodel

Version:

Relational algebra compliant in-memory tabular data store

16 lines (14 loc) 828 B
/** * FilteringMode determines if resultant DataModel should be created from selection set or rejection set. * * The following modes are available * - `NORMAL`: Only entries from selection set are included in the resulatant DataModel instance * - `INVERSE`: Only entries from rejection set are included in the resulatant DataModel instance * - ALL: Both the entries from selection and rejection set are returned in two different DataModel instance */ export { default as DataFormat } from './data-format'; export { default as DimensionSubtype } from './dimension-subtype'; export { default as MeasureSubtype } from './measure-subtype'; export { default as FieldType } from './field-type'; export { default as FilteringMode } from './filtering-mode'; export { default as GROUP_BY_FUNCTIONS } from './group-by-functions';