Package org.picocontainer.containers
Class CompositePicoContainer.CompositeConverters
- java.lang.Object
-
- org.picocontainer.containers.CompositePicoContainer.CompositeConverters
-
- All Implemented Interfaces:
Converters
- Enclosing class:
- CompositePicoContainer
public class CompositePicoContainer.CompositeConverters extends Object implements Converters
-
-
Constructor Summary
Constructors Constructor Description CompositeConverters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
canConvert(Type type)
Returns true if a converters is available to convert to the given object typeObject
convert(String paramValue, Type type)
Converts a particular string value into the target type
-
-
-
Method Detail
-
canConvert
public boolean canConvert(Type type)
Description copied from interface:Converters
Returns true if a converters is available to convert to the given object type- Specified by:
canConvert
in interfaceConverters
- Parameters:
type
- the object Type to convert to- Returns:
- true if the type can be converted to
-
convert
public Object convert(String paramValue, Type type)
Description copied from interface:Converters
Converts a particular string value into the target type- Specified by:
convert
in interfaceConverters
- Parameters:
paramValue
- the String value to converttype
- the object Type to convert to- Returns:
- The converted Object instance
-
-