Java org.springframework.core.convert ConversionService fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.core.convert ConversionService fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.core.convert ConversionService.

The text is from its open source code.

Implementation

org.springframework.core.convert.ConversionService has the following implementations.
Click this link to see all its implementation.

Method

booleancanConvert(@Nullable Class sourceType, Class targetType)
Return true if objects of sourceType can be converted to the targetType .
booleancanConvert(@Nullable TypeDescriptor sourceType, TypeDescriptor targetType)
Return true if objects of sourceType can be converted to the targetType .
Tconvert(@Nullable Object source, Class targetType)
Convert the given source to the specified targetType .
Objectconvert(@Nullable Object source, @Nullable TypeDescriptor sourceType, TypeDescriptor targetType)
Convert the given source to the specified targetType .