All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.commons.configuration2.builder.INIBuilderProperties Maven / Gradle / Ivy

Go to download

Tools to assist in the reading of configuration/preferences files in various formats

There is a newer version: 2.11.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.commons.configuration2.builder;

/**
 * 

* Definition of a parameters interface for INI configurations. *

*

* The {@code INIConfiguration} class defines a bunch of additional properties * related to INI processing. *

*

* Important note: This interface is not intended to be * implemented by client code! It defines a set of available properties and may * be extended even in minor releases. *

* * @since 2.2 * @param the type of the result of all set methods for method chaining */ public interface INIBuilderProperties { /** * Allows setting the leading comment separator which is used in reading an INI * file. * * @param separator String of the new separator for INI reading * @return a reference to this object for method chaining * @since 2.5 */ default T setCommentLeadingCharsUsedInInput(final String separator) { // NoOp return (T) this; } /** * Allows setting the key and value separator which is used in reading an INI * file. * * @param separator String of the new separator for INI reading * @return a reference to this object for method chaining * @since 2.5 */ default T setSeparatorUsedInInput(final String separator) { // NoOp return (T) this; } /** * Allows setting the separator between key and value to be used when writing an * INI file. * * @param separator the new separator for INI output * @return a reference to this object for method chaining */ T setSeparatorUsedInOutput(String separator); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy