Package org.bndly.common.converter.api
Interface Converter<SOURCE,TARGET>
-
- All Known Subinterfaces:
TwoWayConverter<SOURCE,TARGET>
- All Known Implementing Classes:
AbstractPrimitiveStringConverter,BigDecimalStringConverter,BooleanStringConverter,ByteStringConverter,DateStringConverter,DoubleStringConverter,FloatStringConverter,IntegerStringConverter,LongStringConverter,ShortStringConverter
public interface Converter<SOURCE,TARGET>- Author:
- cybercon <bndly@cybercon.de>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Converter<SOURCE,TARGET>canConvertFromTo(Class<? extends SOURCE> sourceType, Class<? extends TARGET> targetType)TARGETconvert(SOURCE source)
-