类 IntegerToEnumConverterFactory
java.lang.Object
cn.taketoday.core.conversion.support.IntegerToEnumConverterFactory
- 所有已实现的接口:
ConverterFactory<Integer,Enum>
Converts from a Integer to a
Enum by calling Class.getEnumConstants().- 从以下版本开始:
- 4.0
- 作者:
- Yanming Zhou, Stephane Nicoll
-
嵌套类概要
嵌套类 -
构造器概要
构造器 -
方法概要
修饰符和类型方法说明getConverter(Class<T> targetType) Get the converter to convert from S to target type T, where T is also an instance of R.
-
构造器详细资料
-
IntegerToEnumConverterFactory
IntegerToEnumConverterFactory()
-
-
方法详细资料
-
getConverter
从接口复制的说明:ConverterFactoryGet the converter to convert from S to target type T, where T is also an instance of R.- 指定者:
getConverter在接口中ConverterFactory<Integer,Enum> - 类型参数:
T- the target type- 参数:
targetType- the target type to convert to- 返回:
- a converter from S to T
-