类 StringToEnumConverterFactory

java.lang.Object
cn.taketoday.core.conversion.support.StringToEnumConverterFactory
所有已实现的接口:
ConverterFactory<String,Enum>

final class StringToEnumConverterFactory extends Object implements ConverterFactory<String,Enum>
Converts from a String to a Enum by calling Enum.valueOf(Class, String).
从以下版本开始:
3.0
作者:
Keith Donald, Stephane Nicoll
  • 构造器详细资料

    • StringToEnumConverterFactory

      StringToEnumConverterFactory()
  • 方法详细资料

    • getConverter

      public <T extends Enum> Converter<String,T> getConverter(Class<T> targetType)
      从接口复制的说明: ConverterFactory
      Get the converter to convert from S to target type T, where T is also an instance of R.
      指定者:
      getConverter 在接口中 ConverterFactory<String,Enum>
      类型参数:
      T - the target type
      参数:
      targetType - the target type to convert to
      返回:
      a converter from S to T