1 16 17 package org.springframework.beans; 18 19 import org.springframework.core.MethodParameter; 20 21 31 public interface TypeConverter { 32 33 47 Object convertIfNecessary(Object value, Class requiredType) throws TypeMismatchException; 48 49 65 Object convertIfNecessary(Object value, Class requiredType, MethodParameter methodParam) 66 throws TypeMismatchException; 67 68 } 69 | Popular Tags |