Example usage for org.apache.commons.configuration SubnodeConfiguration setDelimiterParsingDisabled

List of usage examples for org.apache.commons.configuration SubnodeConfiguration setDelimiterParsingDisabled

Introduction

In this page you can find the example usage for org.apache.commons.configuration SubnodeConfiguration setDelimiterParsingDisabled.

Prototype

public void setDelimiterParsingDisabled(boolean delimiterParsingDisabled) 

Source Link

Document

Set whether this configuration should use delimiters when parsing property values to convert them to lists of values.

Usage

From source file:org.loggo.server.ServerConfiguration.java

@Override
public SubnodeConfiguration getSection(String name) {
    SubnodeConfiguration result = super.getSection(name);
    result.setDelimiterParsingDisabled(true);
    return result;
}