|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use NoSuchSectionException | |
|---|---|
| org.clapper.util.config | org.clapper.util.config - A Configuration File Parser. |
| Uses of NoSuchSectionException in org.clapper.util.config |
|---|
| Methods in org.clapper.util.config that throw NoSuchSectionException | |
|---|---|
java.lang.String[] |
Configuration.getConfigurationTokens(java.lang.String sectionName,
java.lang.String variableName)
Get the value for a variable as a series of tokens. |
java.lang.String |
Configuration.getConfigurationValue(java.lang.String sectionName,
java.lang.String variableName)
Get the value for a variable. |
boolean |
Configuration.getOptionalBooleanValue(java.lang.String sectionName,
java.lang.String variableName,
boolean defaultValue)
Convenience method to get and convert an optional boolean parameter. |
int |
Configuration.getOptionalCardinalValue(java.lang.String sectionName,
java.lang.String variableName,
int defaultValue)
Convenience method to get and convert an optional non-negative integer parameter. |
double |
Configuration.getOptionalDoubleValue(java.lang.String sectionName,
java.lang.String variableName,
double defaultValue)
Convenience method to get and convert an optional floating point numeric parameter. |
int |
Configuration.getOptionalIntegerValue(java.lang.String sectionName,
java.lang.String variableName,
int defaultValue)
Convenience method to get and convert an optional integer parameter. |
java.lang.String |
Configuration.getOptionalStringValue(java.lang.String sectionName,
java.lang.String variableName,
java.lang.String defaultValue)
Convenience method to get an optional string value. |
java.lang.String |
Configuration.getRawValue(java.lang.String sectionName,
java.lang.String variableName)
Get the raw value (i.e., without any substitutions) for a variable. |
boolean |
Configuration.getRequiredBooleanValue(java.lang.String sectionName,
java.lang.String variableName)
Convenience method to get and convert a required boolean parameter. |
int |
Configuration.getRequiredCardinalValue(java.lang.String sectionName,
java.lang.String variableName)
Convenience method to get and convert a required integer parameter. |
double |
Configuration.getRequiredDoubleValue(java.lang.String sectionName,
java.lang.String variableName)
Convenience method to get and convert a required floating point numeric parameter. |
int |
Configuration.getRequiredIntegerValue(java.lang.String sectionName,
java.lang.String variableName)
Convenience method to get and convert a required integer parameter. |
java.util.Collection<java.lang.String> |
Configuration.getVariableNames(java.lang.String sectionName)
Get the names of the all the variables in a section, in the order they were parsed and/or added. |
java.util.Collection<java.lang.String> |
Configuration.getVariableNames(java.lang.String sectionName,
java.util.Collection<java.lang.String> collection)
Get the names of the all the variables in a section, in the order they were parsed and/or added. |
void |
Configuration.setVariable(java.lang.String sectionName,
java.lang.String variableName,
java.lang.String value,
boolean expand)
Set a variable's value. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||