Skip to contents

The Config S3 class represents a configuration object and is essentially a list of ConfigParameter class objects.

Usage

Config(parameters = list())

# S3 method for class 'Config'
validate_object(x)

# S3 method for class 'Config'
show(x)

# S3 method for class 'Config'
as.data.table(x)

Arguments

parameters

A list of ConfigParameter objects.

x

A Config object.

Value

A Config object as a list of ConfigParameter objects.

Methods (by generic)

  • validate_object(Config): Validates a Config object, returning NULL if valid.

  • show(Config): Prints the configuration parameters in a human-readable format.

  • as.data.table(Config): Converts the configuration parameters to a data.table for easy viewing.