Class RioConfig

java.lang.Object
org.eclipse.rdf4j.rio.RioConfig
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ParserConfig, WriterConfig

public class RioConfig extends Object implements Serializable
Superclass for ParserConfig and WriterConfig.

A RioConfig is a container for several RioSetting objects, each of which has a default value. You can override the default value for a RioSetting in one of two ways:

  1. You can programmatically set its value using set(RioSetting, Object)
  2. You can set a Java system property (e.g. by means of a -D jvm command line switch). The property name should corresponds to the key of the setting. Note that this method is not supported by every type of RioSetting: boolean values, strings, and numeric (long) values are supported, but more complex types are not
Author:
Peter Ansell
See Also: