All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.litongjava.model.func.Converter Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package com.litongjava.model.func;

/**
 * @author tanyaowu
 * 从F类型转到T类型
 */
public interface Converter {
  /**
   * 
   * @param value
   * @return
   */
  public T convert(Object value);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy