Class ClassRioSetting<T>

java.lang.Object
org.eclipse.rdf4j.rio.helpers.AbstractRioSetting<T>
org.eclipse.rdf4j.rio.helpers.ClassRioSetting<T>
All Implemented Interfaces:
Serializable, RioSetting<T>

public class ClassRioSetting<T> extends AbstractRioSetting<T>
A RioSetting with a Class value. The given default for the setting can be overridden by means of a system property with a name equal to the setting key.
Author:
Bart Hanssens
See Also:
  • Constructor Details

    • ClassRioSetting

      public ClassRioSetting(String key, String description, T defaultValue)
  • Method Details

    • convert

      public T convert(String stringValue)
      Description copied from interface: RioSetting
      Attempts to convert from a string to a type-safe representation based on the generic type of this setting.
      Parameters:
      stringValue - a string representation of a value for this setting.
      Returns:
      The corresponding object of type T for the supplied string value.