Uses of Interface
org.smooks.api.resource.config.Parameter
-
Packages that use Parameter Package Description org.smooks.api.resource.config org.smooks.engine.resource.config -
-
Uses of Parameter in org.smooks.api.resource.config
Methods in org.smooks.api.resource.config that return Parameter Modifier and Type Method Description <T> Parameter<T>
ResourceConfig. getParameter(String name, Class<T> valueClass)
Gets aparameter
by name from thisResourceConfig
.<T> Parameter<T>
ResourceConfig. setParameter(String name, String type, T value)
Adds a parameter with a specified type to thisResourceConfig
.<T> Parameter<T>
ResourceConfig. setParameter(String name, T value)
Adds a parameter to thisResourceConfig
.Parameter<T>
Parameter. setXml(Element xml)
Methods in org.smooks.api.resource.config that return types with arguments of type Parameter Modifier and Type Method Description List<Parameter<?>>
ResourceConfig. getParameters(String name)
Gets all the parameters of thisResourceConfig
by name.Methods in org.smooks.api.resource.config with parameters of type Parameter Modifier and Type Method Description <T> void
ResourceConfig. setParameter(Parameter<T> parameter)
Adds a parameter to thisResourceConfig
. -
Uses of Parameter in org.smooks.engine.resource.config
Classes in org.smooks.engine.resource.config that implement Parameter Modifier and Type Class Description class
DefaultParameter<T>
Methods in org.smooks.engine.resource.config that return Parameter Modifier and Type Method Description <T> Parameter<T>
DefaultResourceConfig. getParameter(String name, Class<T> valueClass)
static <T> Parameter<T>
ParameterAccessor. getParameter(String name, Class<T> valueType, Map<String,List<ResourceConfig>> resourceConfigsBySelector)
Get the named parameter from the supplied resource config map.static <T> Parameter<T>
ParameterAccessor. getParameter(String name, Class<T> valueType, ContentDeliveryConfig config)
Get the named parameter.<T> Parameter<T>
DefaultResourceConfig. setParameter(String name, String type, T value)
<T> Parameter<T>
DefaultResourceConfig. setParameter(String name, T value)
Parameter<T>
DefaultParameter. setXml(Element xml)
Set the DOM element node associated with the parameter definition.Methods in org.smooks.engine.resource.config that return types with arguments of type Parameter Modifier and Type Method Description List<Parameter<?>>
DefaultResourceConfig. getParameters(String name)
Methods in org.smooks.engine.resource.config with parameters of type Parameter Modifier and Type Method Description <T> void
DefaultResourceConfig. setParameter(Parameter<T> parameter)
-