Source: enums/filtering-mode.js

/**
 * 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
 *
 * You can access this enums from `DataModel.FilteringMode`.
 *
 * @public
 * @segment Enums
 */
const FilteringMode = {
    NORMAL: 'normal',
    INVERSE: 'inverse',
    ALL: 'all'
};

export default FilteringMode;