Uses of Class
digilib.util.Parameter
-
Packages that use Parameter Package Description digilib.conf digilib.util -
-
Uses of Parameter in digilib.conf
Methods in digilib.conf with parameters of type Parameter Modifier and Type Method Description protected boolean
DigilibConfiguration. setSpecialValueFromString(Parameter param, String value)
Set non-standard value in Parameter param. -
Uses of Parameter in digilib.util
Fields in digilib.util with type parameters of type Parameter Modifier and Type Field Description protected HashMap<String,Parameter>
ParameterMap. params
Methods in digilib.util that return Parameter Modifier and Type Method Description Parameter
ParameterMap. get(String key)
Get the Parameter with the corresponding key.Parameter
ParameterMap. newParameter(String name, Object def, Object val)
Add a new Parameter with name, default and value.Parameter
ParameterMap. newParameter(String name, Object def, Object val, int type)
Add a new Parameter with name, default, value and type.Parameter
ParameterMap. put(Parameter val)
Add the Parameter val to the map, using val's name.Parameter
ParameterMap. put(String key, Parameter val)
Add the Parameter to the map with a certain key.Methods in digilib.util that return types with arguments of type Parameter Modifier and Type Method Description HashMap<String,Parameter>
ParameterMap. getParameters(int type)
Returns a map with all Parameters of a type.HashMap<String,Parameter>
ParameterMap. getParams()
Returns the parameter Map.Methods in digilib.util with parameters of type Parameter Modifier and Type Method Description Parameter
ParameterMap. put(Parameter val)
Add the Parameter val to the map, using val's name.Parameter
ParameterMap. put(String key, Parameter val)
Add the Parameter to the map with a certain key.Method parameters in digilib.util with type arguments of type Parameter Modifier and Type Method Description void
ParameterMap. setParams(HashMap<String,Parameter> params)
Sets the parameter Map.
-