Skip to main content

NeqFilterOperation

geovisto-mapReadme | API


geovisto-map / NeqFilterOperation

Class: NeqFilterOperation

This class wraps the not-equals filter operation.

Author

Jiri Hynek

Extends

Implements

Constructors

new NeqFilterOperation()

new NeqFilterOperation(): NeqFilterOperation

It creates the not-equals filter operation.

Returns

NeqFilterOperation

Overrides

AbstractMapDomain.constructor

Source

model/internal/filter/custom/NeqFilterOperation.ts:16

Methods

getName()

getName(): string

It returns the string label of the filter representing the operator.

Returns

string

Implementation of

IMapFilterOperation.getName

Overrides

AbstractMapDomain.getName

Source

model/internal/filter/custom/NeqFilterOperation.ts:23


match()

match(value, pattern): boolean

It checks if value does not equal a pattern.

Parameters

value: unknown

pattern: string

Returns

boolean

Implementation of

IMapFilterOperation.match

Source

model/internal/filter/custom/NeqFilterOperation.ts:33


toString()

toString(): string

The string representation is equal to the name of the map domain.

Returns

string

Inherited from

AbstractMapDomain.toString

Source

model/internal/domain/abstract/AbstractMapDomain.ts:18