|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ConfigurationException | |
org.apache.avalon.framework.configuration | Component configuration interfaces and XML-based implementations. |
org.apache.avalon.framework.container | Utilities supporting execution of component lifecycle stages. |
org.apache.avalon.framework.parameters | Interfaces supporting the supply of flat configuration information. |
Uses of ConfigurationException in org.apache.avalon.framework.configuration |
Methods in org.apache.avalon.framework.configuration that throw ConfigurationException | |
MutableConfiguration |
MutableConfiguration.getMutableChild(java.lang.String name)
Equivalent to getMutableChild( name, true ) |
MutableConfiguration |
MutableConfiguration.getMutableChild(java.lang.String name,
boolean autoCreate)
Gets a child node of this configuration. |
MutableConfiguration[] |
MutableConfiguration.getMutableChildren()
Returns an array of mutable children. |
MutableConfiguration[] |
MutableConfiguration.getMutableChildren(java.lang.String name)
Returns an array of mutable children with the given name. |
java.lang.String |
DefaultImmutableConfiguration.getNamespace()
Returns the namespace of this configuration element |
protected java.lang.String |
DefaultImmutableConfiguration.getPrefix()
Returns the prefix of the namespace |
java.lang.String |
DefaultImmutableConfiguration.getValue()
Returns the value of the configuration element as a String . |
java.lang.String |
DefaultImmutableConfiguration.getAttribute(java.lang.String name)
Returns the value of the attribute specified by its name as a String . |
void |
DefaultConfigurationSerializer.serialize(org.xml.sax.ContentHandler handler,
Configuration source)
Serialize the configuration to a ContentHandler |
protected void |
DefaultConfigurationSerializer.serializeElement(org.xml.sax.ContentHandler handler,
org.xml.sax.helpers.NamespaceSupport namespaceSupport,
Configuration element)
Serialize each Configuration element. |
void |
DefaultConfigurationSerializer.serializeToFile(java.lang.String filename,
Configuration source)
Serialize the configuration object to a file using a filename. |
void |
DefaultConfigurationSerializer.serializeToFile(java.io.File file,
Configuration source)
Serialize the configuration object to a file using a File object. |
void |
DefaultConfigurationSerializer.serialize(java.io.OutputStream outputStream,
Configuration source)
Serialize the configuration object to an output stream. |
void |
DefaultConfigurationSerializer.serialize(java.lang.String uri,
Configuration source)
Serialize the configuration object to an output stream derived from an URI. |
java.lang.String |
DefaultConfigurationSerializer.serialize(Configuration source)
Serialize the configuration object to a string |
Configuration |
DefaultConfigurationBuilder.buildFromFile(java.lang.String filename)
Build a configuration object from a file using a filename. |
Configuration |
DefaultConfigurationBuilder.buildFromFile(java.io.File file)
Build a configuration object from a file using a File object. |
Configuration |
DefaultConfigurationBuilder.build(java.io.InputStream inputStream)
Build a configuration object using an InputStream. |
Configuration |
DefaultConfigurationBuilder.build(java.io.InputStream inputStream,
java.lang.String systemId)
Build a configuration object using an InputStream; supplying a systemId to make messages about all kinds of errors more meaningfull. |
Configuration |
DefaultConfigurationBuilder.build(java.lang.String uri)
Build a configuration object using an URI |
Configuration |
DefaultConfigurationBuilder.build(org.xml.sax.InputSource input)
Build a configuration object using an XML InputSource object |
java.lang.String |
DefaultConfiguration.getNamespace()
Returns the namespace of this configuration element |
protected java.lang.String |
DefaultConfiguration.getPrefix()
Returns the prefix of the namespace |
java.lang.String |
DefaultConfiguration.getValue()
Returns the value of the configuration element as a String . |
java.lang.String |
DefaultConfiguration.getAttribute(java.lang.String name)
Returns the value of the attribute specified by its name as a String . |
MutableConfiguration |
DefaultConfiguration.getMutableChild(java.lang.String name)
|
MutableConfiguration |
DefaultConfiguration.getMutableChild(java.lang.String name,
boolean autoCreate)
|
MutableConfiguration[] |
DefaultConfiguration.getMutableChildren()
|
MutableConfiguration[] |
DefaultConfiguration.getMutableChildren(java.lang.String name)
|
protected abstract java.lang.String |
AbstractConfiguration.getPrefix()
Returns the prefix of the namespace. |
int |
AbstractConfiguration.getValueAsInteger()
Returns the value of the configuration element as an int .
|
long |
AbstractConfiguration.getValueAsLong()
Returns the value of the configuration element as a long .
|
float |
AbstractConfiguration.getValueAsFloat()
Returns the value of the configuration element as a float . |
boolean |
AbstractConfiguration.getValueAsBoolean()
Returns the value of the configuration element as a boolean . |
int |
AbstractConfiguration.getAttributeAsInteger(java.lang.String name)
Returns the value of the attribute specified by its name as an int .
|
long |
AbstractConfiguration.getAttributeAsLong(java.lang.String name)
Returns the value of the attribute specified by its name as a long .
|
float |
AbstractConfiguration.getAttributeAsFloat(java.lang.String name)
Returns the value of the attribute specified by its name as a float . |
boolean |
AbstractConfiguration.getAttributeAsBoolean(java.lang.String name)
Returns the value of the attribute specified by its name as a boolean . |
void |
Reconfigurable.reconfigure(Configuration configuration)
Describe reconfigure method here. |
java.lang.String |
Configuration.getNamespace()
Returns a string indicating which namespace this Configuration node belongs to. |
java.lang.String |
Configuration.getAttribute(java.lang.String paramName)
Return the value of specified attribute. |
int |
Configuration.getAttributeAsInteger(java.lang.String paramName)
Return the int value of the specified attribute contained
in this node. |
long |
Configuration.getAttributeAsLong(java.lang.String name)
Returns the value of the attribute specified by its name as a long . |
float |
Configuration.getAttributeAsFloat(java.lang.String paramName)
Return the float value of the specified parameter contained
in this node. |
boolean |
Configuration.getAttributeAsBoolean(java.lang.String paramName)
Return the boolean value of the specified parameter contained
in this node. |
java.lang.String |
Configuration.getValue()
Return the String value of the node. |
int |
Configuration.getValueAsInteger()
Return the int value of the node. |
float |
Configuration.getValueAsFloat()
Return the float value of the node. |
boolean |
Configuration.getValueAsBoolean()
Return the boolean value of the node. |
long |
Configuration.getValueAsLong()
Return the long value of the node. |
void |
Configurable.configure(Configuration configuration)
Pass the Configuration to the Configurable
class. |
Constructors in org.apache.avalon.framework.configuration that throw ConfigurationException | |
DefaultImmutableConfiguration(Configuration config)
Deep copy constructor. |
|
DefaultConfiguration(Configuration config)
Shallow copy constructor, suitable for craeting a writable clone of a read-only configuration. |
Uses of ConfigurationException in org.apache.avalon.framework.container |
Methods in org.apache.avalon.framework.container that throw ConfigurationException | |
static void |
ContainerUtil.configure(java.lang.Object object,
Configuration configuration)
Configure specified object if it implements the Configurable interface. |
Uses of ConfigurationException in org.apache.avalon.framework.parameters |
Methods in org.apache.avalon.framework.parameters that throw ConfigurationException | |
static Parameters |
Parameters.fromConfiguration(Configuration configuration)
Create a Parameters object from a Configuration
object. |
static Parameters |
Parameters.fromConfiguration(Configuration configuration,
java.lang.String elementName)
Create a Parameters object from a Configuration
object using the supplied element name. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |