Learn R Programming

ows4R (version 0.2)

Or: Or

Description

Or

Arguments

Value

Object of R6Class for modelling an Or operator

Format

R6Class object.

Methods

new(...)

This method is used to instantiate an Or operator

Examples

Run this code
# NOT RUN {
  expr1 <- PropertyIsEqualTo$new(PropertyName = "property1", Literal = "value1")
  expr2 <- PropertyIsEqualTo$new(PropertyName = "property2", Literal = "value2")
  or <- Or$new(expr1,expr2)
  or_xml <- or$encode() #see how it looks like in XML

# }

Run the code above in your browser using DataLab