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

cn.featherfly.conversion.string.bp.BeanPropertyConvertor Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version

package cn.featherfly.conversion.string.bp;

import cn.featherfly.common.bean.BeanProperty;
import cn.featherfly.common.lang.GenericType;
import cn.featherfly.conversion.string.AbstractToStringConvertor;


/**
 * 

* 格式化转换器 *

* @param 转换对象泛型 * @author 钟冀 */ public abstract class BeanPropertyConvertor extends AbstractToStringConvertor>{ /** */ public BeanPropertyConvertor() { } /** * {@inheritDoc} */ @Override protected boolean supportFor(GenericType generecType) { if (generecType == null) { return false; } return BeanProperty.class == generecType.getClass(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy