This commit is contained in:
地平线
2015-09-22 17:34:27 +08:00
parent 92eba39dd8
commit ac6a2e57c6
73 changed files with 6720 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.wentch.redkale.convert;
import java.lang.reflect.Type;
/**
*
* @author zhangjx
* @param <W>
* @param <T>
*/
public interface Encodeable<W extends Writer, T> {
public void convertTo(final W out, T value);
/**
* 泛型映射接口
*
* @return
*/
public Type getType();
}