Learn R Programming

ows4R (version 0.4)

Not: Not

Description

Not

Not

Arguments

Value

Object of R6Class for modelling an Not

Format

R6Class object.

Author

Emmanuel Blondel <emmanuel.blondel1@gmail.com>

Super classes

ows4R::OGCAbstractObject -> ows4R::OGCExpression -> ows4R::UnaryLogicOpType -> Not

Methods

Public methods

Inherited methods


Method new()

Initializes an Not expression

Usage

Not$new(...)

Arguments

...

list of objects of class OGCExpression


Method clone()

The objects of this class are cloneable with this method.

Usage

Not$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

Run this code
  expr <- PropertyIsEqualTo$new(PropertyName = "property", Literal = "value")
  not <- Not$new(expr)
  not_xml <- not$encode() #see how it looks like in XML

Run the code above in your browser using DataLab