[ini4j]

org.ini4j
Class Options

Object
  extended by MultiMapImpl<String,String>
      extended by OptionMapImpl
          extended by Options
All Implemented Interfaces:
Map<String,String>, MultiMap<String,String>, OptionMap

public class Options
extends OptionMapImpl


Nested Class Summary
 
Nested classes/interfaces inherited from class OptionMapImpl
OptionMapImpl.Access
 
Nested classes/interfaces inherited from interface Map
Map.Entry<K,V>
 
Constructor Summary
Options()
           
Options(InputStream input)
           
Options(Reader input)
           
Options(URL input)
           
 
Method Summary
protected  String escape(String input)
           
protected  void format(Writer output)
           
protected  Config getConfig()
           
 void load(InputStream input)
           
 void load(Reader input)
           
 void load(URL input)
           
 void setConfig(Config value)
           
 void store(OutputStream output)
           
 void store(Writer output)
           
 
Methods inherited from class OptionMapImpl
as, as, fetch, fetch, from, from, getDefaultBeanAccess, newBeanAccess, newBeanAccess, resolve, to, to
 
Methods inherited from class MultiMapImpl
add, add, clear, containsKey, containsValue, entrySet, get, get, getAll, isEmpty, keySet, length, put, put, putAll, putAll, remove, remove, size, values
 
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface MultiMap
add, add, get, getAll, length, put, putAll, remove
 
Methods inherited from interface Map
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, values
 

Constructor Detail

Options

public Options()

Options

public Options(Reader input)
        throws IOException,
               InvalidIniFormatException
Throws:
IOException
InvalidIniFormatException

Options

public Options(InputStream input)
        throws IOException,
               InvalidIniFormatException
Throws:
IOException
InvalidIniFormatException

Options

public Options(URL input)
        throws IOException,
               InvalidIniFormatException
Throws:
IOException
InvalidIniFormatException
Method Detail

setConfig

public void setConfig(Config value)

load

public void load(InputStream input)
          throws IOException,
                 InvalidIniFormatException
Throws:
IOException
InvalidIniFormatException

load

public void load(Reader input)
          throws IOException,
                 InvalidIniFormatException
Throws:
IOException
InvalidIniFormatException

load

public void load(URL input)
          throws IOException,
                 InvalidIniFormatException
Throws:
IOException
InvalidIniFormatException

store

public void store(OutputStream output)
           throws IOException
Throws:
IOException

store

public void store(Writer output)
           throws IOException
Throws:
IOException

getConfig

protected Config getConfig()

escape

protected String escape(String input)

format

protected void format(Writer output)
               throws IOException
Throws:
IOException

[ini4j]