c8y-openlayer
Version:
This module is designed to help integrate Openlayer with Cumulocity IoT
21 lines (18 loc) • 799 B
JavaScript
import _ol_ from '../../index.js';
import _ol_format_filter_ComparisonBinary_ from '../filter/comparisonbinary.js';
/**
* @classdesc
* Represents a `<PropertyIsNotEqualTo>` comparison operator.
*
* @constructor
* @param {!string} propertyName Name of the context property to compare.
* @param {!(string|number)} expression The value to compare.
* @param {boolean=} opt_matchCase Case-sensitive?
* @extends {ol.format.filter.ComparisonBinary}
* @api
*/
var _ol_format_filter_NotEqualTo_ = function(propertyName, expression, opt_matchCase) {
_ol_format_filter_ComparisonBinary_.call(this, 'PropertyIsNotEqualTo', propertyName, expression, opt_matchCase);
};
_ol_.inherits(_ol_format_filter_NotEqualTo_, _ol_format_filter_ComparisonBinary_);
export default _ol_format_filter_NotEqualTo_;