接口 Converter<S,T>


public interface Converter<S,T>
Convert an object from source type S to target type T.
作者:
leyou, Eric Zhao
  • 方法概要

    修饰符和类型
    方法
    说明
    convert(S source)
    Convert source to the target type.
  • 方法详细资料

    • convert

      T convert(S source)
      Convert source to the target type.
      参数:
      source - the source object
      返回:
      the target object