Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.jdbf.engine.configuration
Interface Configuration  view Configuration download Configuration.java

All Known Implementing Classes:
AbstractConfiguration

public interface Configuration

Configuration is a configuration represented in the XML format


Method Summary
 Configuration getConfiguration(java.lang.String name)
          Return child node of this configuration with the given name
 Configuration getConfiguration(java.lang.String name, java.lang.String defaultValue)
          Return child node of this configuration with the given name
 java.util.Iterator getConfigurations(java.lang.String name)
          Return child nodes of this configuration with the given name
 float getFloatValue()
          Return the value of this configuration as float
 int getIntValue()
          Return the value of this configuration as int
 java.lang.String getName()
          Return the name of this configuration
 java.lang.String getValue()
          Return the value of this configuration as String
 java.lang.String getValue(java.lang.String defaultValue)
          Return the value of this configuration as String
 

Method Detail

getName

public java.lang.String getName()
Return the name of this configuration


getConfiguration

public Configuration getConfiguration(java.lang.String name)
Return child node of this configuration with the given name


getConfiguration

public Configuration getConfiguration(java.lang.String name,
                                      java.lang.String defaultValue)
Return child node of this configuration with the given name


getConfigurations

public java.util.Iterator getConfigurations(java.lang.String name)
Return child nodes of this configuration with the given name


getIntValue

public int getIntValue()
                throws java.lang.NumberFormatException
Return the value of this configuration as int


getFloatValue

public float getFloatValue()
                    throws java.lang.NumberFormatException
Return the value of this configuration as float


getValue

public java.lang.String getValue()
Return the value of this configuration as String


getValue

public java.lang.String getValue(java.lang.String defaultValue)
Return the value of this configuration as String