UNPKG

ol

Version:

OpenLayers mapping library

25 lines (20 loc) 612 B
/** * @module ol/format/filter/NotEqualTo */ import ComparisonBinary from './ComparisonBinary.js'; /** * @classdesc * Represents a `<PropertyIsNotEqualTo>` comparison operator. * @api */ class NotEqualTo extends ComparisonBinary { /** * @param {!string} propertyName Name of the context property to compare. * @param {!(string|number)} expression The value to compare. * @param {boolean=} opt_matchCase Case-sensitive? */ constructor(propertyName, expression, opt_matchCase) { super('PropertyIsNotEqualTo', propertyName, expression, opt_matchCase); } } export default NotEqualTo;