Class ListTypeConverter<T>

  • All Implemented Interfaces:
    TypeConverter<java.util.List<T>>

    public class ListTypeConverter<T>
    extends java.lang.Object
    implements TypeConverter<java.util.List<T>>
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.List<T> convert​(java.lang.String input)
      Convert String value to the target type.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ListTypeConverter

        public ListTypeConverter​(TypeConverter<T> typeConverter)
    • Method Detail

      • convert

        public java.util.List<T> convert​(java.lang.String input)
        Description copied from interface: TypeConverter
        Convert String value to the target type.
        Specified by:
        convert in interface TypeConverter<T>
        Parameters:
        input - Input string.
        Returns:
        The value of input in target type.