Uses of Class
org.apache.commons.configuration.ConfigurationException

Packages that use ConfigurationException
org.apache.commons.configuration Configuration package.  
 

Uses of ConfigurationException in org.apache.commons.configuration
 

Methods in org.apache.commons.configuration that throw ConfigurationException
protected  Document XMLConfiguration.createDocument()
          Creates a DOM document from the internal tree of configuration nodes.
 void XMLConfiguration.load()
           
 void XMLConfiguration.load(String fileName)
           
 void XMLConfiguration.load(File file)
           
 void XMLConfiguration.load(URL url)
           
 void XMLConfiguration.load(InputStream in)
           
 void XMLConfiguration.load(InputStream in, String encoding)
           
 void XMLConfiguration.load(Reader in)
          Load the properties from the given reader.
 void XMLConfiguration.save()
           
 void XMLConfiguration.save(String fileName)
           
 void XMLConfiguration.save(File file)
           
 void XMLConfiguration.save(URL url)
           
 void XMLConfiguration.save(OutputStream out)
           
 void XMLConfiguration.save(OutputStream out, String encoding)
           
 void XMLConfiguration.save(Writer writer)
          Saves the configuration to the specified writer.
 Configuration ConfigurationFactory.getConfiguration()
          Return the configuration provided by this factory.
 void AbstractFileConfiguration.load()
          Load the configuration from the underlying location.
 void AbstractFileConfiguration.load(String fileName)
          Locate the specified file and load the configuration.
 void AbstractFileConfiguration.load(File file)
          Load the configuration from the specified file.
 void AbstractFileConfiguration.load(URL url)
          Load the configuration from the specified URL.
 void AbstractFileConfiguration.load(InputStream in)
          Load the configuration from the specified stream, using the encoding returned by AbstractFileConfiguration.getEncoding().
 void AbstractFileConfiguration.load(InputStream in, String encoding)
          Load the configuration from the specified stream, using the specified encoding.
 void AbstractFileConfiguration.save()
          Save the configuration.
 void AbstractFileConfiguration.save(String fileName)
          Save the configuration to the specified file.
 void AbstractFileConfiguration.save(URL url)
          Save the configuration to the specified URL if it's a file URL.
 void AbstractFileConfiguration.save(File file)
          Save the configuration to the specified file.
 void AbstractFileConfiguration.save(OutputStream out)
          Save the configuration to the specified stream, using the encoding returned by AbstractFileConfiguration.getEncoding().
 void AbstractFileConfiguration.save(OutputStream out, String encoding)
          Save the configuration to the specified stream, using the specified encoding.
 void XMLPropertiesConfiguration.load(Reader in)
           
 void XMLPropertiesConfiguration.save(Writer out)
           
 void FileConfiguration.load()
          Load the configuration from the underlying URL.
 void FileConfiguration.load(String fileName)
          Locate the specified file and load the configuration.
 void FileConfiguration.load(File file)
          Load the configuration from the specified file.
 void FileConfiguration.load(URL url)
          Load the configuration from the specified URL.
 void FileConfiguration.load(InputStream in)
          Load the configuration from the specified stream, using the encoding returned by FileConfiguration.getEncoding().
 void FileConfiguration.load(InputStream in, String encoding)
          Load the configuration from the specified stream, using the specified encoding.
 void FileConfiguration.load(Reader in)
          Load the configuration from the specified reader.
 void FileConfiguration.save()
          Save the configuration.
 void FileConfiguration.save(String fileName)
          Save the configuration to the specified file.
 void FileConfiguration.save(File file)
          Save the configuration to the specified file.
 void FileConfiguration.save(URL url)
          Save the configuration to the specified URL if it's a file URL.
 void FileConfiguration.save(OutputStream out)
          Save the configuration to the specified stream, using the encoding returned by FileConfiguration.getEncoding().
 void FileConfiguration.save(OutputStream out, String encoding)
          Save the configuration to the specified stream, using the specified encoding.
 void FileConfiguration.save(Writer out)
          Save the configuration to the specified writer.
 void PropertiesConfiguration.load(Reader in)
          Load the properties from the given reader.
 void PropertiesConfiguration.save(Writer writer)
          Save the configuration to the specified stream.
 

Constructors in org.apache.commons.configuration that throw ConfigurationException
XMLConfiguration(String fileName)
          Creates a new instance of XMLConfiguration.
XMLConfiguration(File file)
          Creates a new instance of XMLConfiguration.
XMLConfiguration(URL url)
          Creates a new instance of XMLConfiguration.
AbstractFileConfiguration(String fileName)
          Creates and loads the configuration from the specified file.
AbstractFileConfiguration(File file)
          Creates and loads the configuration from the specified file.
AbstractFileConfiguration(URL url)
          Creates and loads the configuration from the specified URL.
XMLPropertiesConfiguration(String fileName)
          Creates and loads the xml properties from the specified file.
XMLPropertiesConfiguration(File file)
          Creates and loads the xml properties from the specified file.
XMLPropertiesConfiguration(URL url)
          Creates and loads the xml properties from the specified URL.
PropertiesConfiguration(String fileName)
          Creates and loads the extended properties from the specified file.
PropertiesConfiguration(File file)
          Creates and loads the extended properties from the specified file.
PropertiesConfiguration(URL url)
          Creates and loads the extended properties from the specified URL.
 



Copyright © 2001-2005 The Apache Software Foundation. All Rights Reserved.