Class BooleanRioSetting
java.lang.Object
org.eclipse.rdf4j.rio.helpers.AbstractRioSetting<Boolean>
org.eclipse.rdf4j.rio.helpers.BooleanRioSetting
- All Implemented Interfaces:
 Serializable, RioSetting<Boolean>
A 
RioSetting with a Boolean value. The given default for the setting can be overridden by means of a
System property with a name equal to the setting key, and a string value of "true" or "false" (ignoring case).- Author:
 - Jeen Broekstra
 - See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionBooleanRioSetting(String key, String description, Boolean defaultValue) Creates a new booleanRioSetting. - 
Method Summary
Methods inherited from class AbstractRioSetting
equals, getDefaultValue, getDescription, getKey, hashCode, toString 
- 
Constructor Details
- 
BooleanRioSetting
Creates a new booleanRioSetting.- Parameters:
 key- A unique key to use for this setting.description- A short human-readable description for this setting.defaultValue- An immutable value specifying the default for this setting.
 
 - 
 - 
Method Details
- 
convert
Converts a String to a Boolean- Parameters:
 stringValue- a string representation of a value for this setting.- Returns:
 - a Boolean representing the supplied string value. If the string value is "true" (ignoring case), the
        returned Boolean will be 
true, otherwisefalse. 
 
 -