Uses of Class
org.apache.avalon.framework.parameters.ParameterException
-
Packages that use ParameterException Package Description 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 ParameterException in org.apache.avalon.framework.container
Methods in org.apache.avalon.framework.container that throw ParameterException Modifier and Type Method Description static void
ContainerUtil. parameterize(java.lang.Object object, Parameters parameters)
Parameterize specified object if it implements theParameterizable
interface. -
Uses of ParameterException in org.apache.avalon.framework.parameters
Methods in org.apache.avalon.framework.parameters that throw ParameterException Modifier and Type Method Description java.lang.String
Parameters. getParameter(java.lang.String name)
Retrieve theString
value of the specified parameter.boolean
Parameters. getParameterAsBoolean(java.lang.String name)
Retrieve theboolean
value of the specified parameter.float
Parameters. getParameterAsFloat(java.lang.String name)
Retrieve thefloat
value of the specified parameter.int
Parameters. getParameterAsInteger(java.lang.String name)
Retrieve theint
value of the specified parameter.long
Parameters. getParameterAsLong(java.lang.String name)
Retrieve thelong
value of the specified parameter.void
Parameterizable. parameterize(Parameters parameters)
Provide component with parameters.void
Reparameterizable. reparameterize(Parameters parameters)
Provide component with parameters.
-