UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

48 lines (47 loc) 1.81 kB
/* THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE: https://www.infragistics.com/legal/license/igultimate-la https://www.infragistics.com/legal/license/igultimate-eula GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company. */ import { ColumnFilterConditionDescription } from "./ColumnFilterConditionDescription"; import { markType } from "./type"; /** * @hidden */ export let ColumnComparisonFilterConditionDescription = /*@__PURE__*/ (() => { class ColumnComparisonFilterConditionDescription extends ColumnFilterConditionDescription { constructor() { super(); this.n = null; this.o = null; this.l = false; } get_type() { return "ColumnComparisonFilterCondition"; } get operator() { return this.n; } set operator(a) { this.n = a; this.j("Operator"); } get valueRef() { return this.o; } set valueRef(a) { this.o = a; this.j("ValueRef"); } get isCaseSensitive() { return this.l; } set isCaseSensitive(a) { this.l = a; this.j("IsCaseSensitive"); } } ColumnComparisonFilterConditionDescription.$t = markType(ColumnComparisonFilterConditionDescription, 'ColumnComparisonFilterConditionDescription', ColumnFilterConditionDescription.$); return ColumnComparisonFilterConditionDescription; })();