UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

93 lines (92 loc) 2.83 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let FilterExpressionDescription = /*@__PURE__*/ (() => { class FilterExpressionDescription extends Description { constructor() { super(); this.z = 0; this.l = false; this.q = false; this.p = false; this.m = false; this.n = false; this.o = false; this.r = false; } get_type() { return "FilterExpression"; } get type() { return this.get_type(); } get precedence() { return this.z; } set precedence(a) { this.z = a; this.j("Precedence"); } get isAutoGenerated() { return this.l; } set isAutoGenerated(a) { this.l = a; this.j("IsAutoGenerated"); } get isPropertyReference() { return this.q; } set isPropertyReference(a) { this.q = a; this.j("IsPropertyReference"); } get isOperation() { return this.p; } set isOperation(a) { this.p = a; this.j("IsOperation"); } get isFunction() { return this.m; } set isFunction(a) { this.m = a; this.j("IsFunction"); } get isLiteral() { return this.n; } set isLiteral(a) { this.n = a; this.j("IsLiteral"); } get isNull() { return this.o; } set isNull(a) { this.o = a; this.j("IsNull"); } get isWrapper() { return this.r; } set isWrapper(a) { this.r = a; this.j("IsWrapper"); } } FilterExpressionDescription.$t = markType(FilterExpressionDescription, 'FilterExpressionDescription', Description.$); FilterExpressionDescription.__marshalByValue = true; FilterExpressionDescription.__marshalByValueAlias = "FilterExpression"; return FilterExpressionDescription; })();