igniteui-react-core
Version:
Ignite UI React Core.
52 lines (51 loc) • 2.18 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 { FilterExpressionDescription } from "./FilterExpressionDescription";
import { markType } from "./type";
/**
* @hidden
*/
var LiteralFilterExpressionDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(LiteralFilterExpressionDescription, _super);
function LiteralFilterExpressionDescription() {
var _this = _super.call(this) || this;
_this.n = null;
_this.l = false;
return _this;
}
LiteralFilterExpressionDescription.prototype.get_type = function () {
return "LiteralFilterExpression";
};
Object.defineProperty(LiteralFilterExpressionDescription.prototype, "literalValue", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.g("LiteralValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(LiteralFilterExpressionDescription.prototype, "leaveUnquoted", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.g("LeaveUnquoted");
},
enumerable: false,
configurable: true
});
LiteralFilterExpressionDescription.$t = markType(LiteralFilterExpressionDescription, 'LiteralFilterExpressionDescription', FilterExpressionDescription.$);
LiteralFilterExpressionDescription.__marshalByValue1 = true;
LiteralFilterExpressionDescription.__marshalByValueAlias1 = "LiteralFilterExpression";
return LiteralFilterExpressionDescription;
}(FilterExpressionDescription));
export { LiteralFilterExpressionDescription };