![JAR search and dependency download from the Maven repository](/logo.png)
org.ini4j.OptionMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of izpack-ini4j Show documentation
Show all versions of izpack-ini4j Show documentation
Java API for handling configuration files in Windows .ini format. The library includes its own Map
based API, Java Preferences API and Java Beans API for handling .ini files. Additionally, the library includes a
feature rich (variable/macro substitution, multiply property values, etc) java.util.Properties replacement.
The newest version!
/*
* Copyright 2005,2009 Ivan SZKIBA
*
* Licensed 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.ini4j;
public interface OptionMap extends MultiMap, CommentedMap
{
T getAll(Object key, Class clazz);
void add(String key, Object value);
void add(String key, Object value, int index);
T as(Class clazz);
T as(Class clazz, String keyPrefix);
String fetch(Object key);
String fetch(Object key, String defaultValue);
String fetch(Object key, int index);
T fetch(Object key, Class clazz);
T fetch(Object key, Class clazz, T defaultValue);
T fetch(Object key, int index, Class clazz);
T fetchAll(Object key, Class clazz);
void from(Object bean);
void from(Object bean, String keyPrefix);
String get(Object key, String defaultValue);
T get(Object key, Class clazz);
T get(Object key, Class clazz, T defaultValue);
T get(Object key, int index, Class clazz);
String put(String key, Object value);
String put(String key, Object value, int index);
void putAll(String key, Object value);
void to(Object bean);
void to(Object bean, String keyPrefix);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy