ISOAbstractParameter

ISOAbstractParameter

Format

R6Class object.

Value

Object of R6Class for modelling an ISO abstract parameter

Author

Emmanuel Blondel <emmanuel.blondel1@gmail.com>

Super classes

geometa::geometaLogger -> geometa::ISOAbstractObject -> ISOAbstractParameter

Public fields

name

name [1..1]: character|ISOMemberName

direction

direction [0..1]: ISOParameterDirection

description

description [0..1]: character

optionality

optionality [1..1]: logical

repeatability

repeatability [1..1]: logical

valueType

valueType [1..1]: ISORecordType

value

value [0..*] : ISORecord

resource

resource [0..*] : ISOSource

Methods

Inherited methods


Method new()

Initializes object

Usage

ISOAbstractParameter$new(xml = NULL)

Arguments

xml

object of class XMLInternalNode-class


Method setName()

Set name

Usage

ISOAbstractParameter$setName(name, attributeType, locales = NULL)

Arguments

name

name

attributeType

attribute type

locales

list of localized texts. Default is NULL


Method setDirection()

Set direction

Usage

ISOAbstractParameter$setDirection(direction)

Arguments

direction

object of class ISOParameterDirection or character among values returned by ISOParameterDirection$values()


Method setDescription()

Set description

Usage

ISOAbstractParameter$setDescription(description, locales = NULL)

Arguments

description

description

locales

list of localized texts. Default is NULL


Method setOptionality()

Set optionality

Usage

ISOAbstractParameter$setOptionality(optional)

Arguments

optional

object of class logical


Method setRepeatability()

Set repeatability

Usage

ISOAbstractParameter$setRepeatability(repeatable)

Arguments

repeatable

object of class logical


Method setValueType()

Set value type

Usage

ISOAbstractParameter$setValueType(valueType)

Arguments

valueType

object of class ISORecordType


Method addValue()

Adds value

Usage

ISOAbstractParameter$addValue(value)

Arguments

value

object of class ISORecord

Returns

TRUE if added, FALSE otherwise


Method delValue()

Deletes value

Usage

ISOAbstractParameter$delValue(value)

Arguments

value

object of class ISORecord

Returns

TRUE if deleted, FALSE otherwise


Method addResource()

Adds resource

Usage

ISOAbstractParameter$addResource(resource)

Arguments

resource

object of class ISOSource

Returns

TRUE if added, FALSE otherwise


Method delResource()

Deletes resource

Usage

ISOAbstractParameter$delResource(resource)

Arguments

resource

object of class ISOSource

Returns

TRUE if added, FALSE otherwise


Method clone()

The objects of this class are cloneable with this method.

Usage

ISOAbstractParameter$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.