igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
131 lines (130 loc) • 4.34 kB
JavaScript
/*
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 { __extends } from "tslib";
import { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var FilterExpressionDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(FilterExpressionDescription, _super);
function FilterExpressionDescription() {
var _this = _super.call(this) || this;
_this.z = 0;
_this.l = false;
_this.q = false;
_this.p = false;
_this.m = false;
_this.n = false;
_this.o = false;
_this.r = false;
return _this;
}
FilterExpressionDescription.prototype.get_type = function () {
return "FilterExpression";
};
Object.defineProperty(FilterExpressionDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterExpressionDescription.prototype, "precedence", {
get: function () {
return this.z;
},
set: function (a) {
this.z = a;
this.j("Precedence");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterExpressionDescription.prototype, "isAutoGenerated", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.j("IsAutoGenerated");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterExpressionDescription.prototype, "isPropertyReference", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("IsPropertyReference");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterExpressionDescription.prototype, "isOperation", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("IsOperation");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterExpressionDescription.prototype, "isFunction", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("IsFunction");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterExpressionDescription.prototype, "isLiteral", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("IsLiteral");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterExpressionDescription.prototype, "isNull", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("IsNull");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterExpressionDescription.prototype, "isWrapper", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.j("IsWrapper");
},
enumerable: false,
configurable: true
});
FilterExpressionDescription.$t = markType(FilterExpressionDescription, 'FilterExpressionDescription', Description.$);
FilterExpressionDescription.__marshalByValue = true;
FilterExpressionDescription.__marshalByValueAlias = "FilterExpression";
return FilterExpressionDescription;
}(Description));
export { FilterExpressionDescription };