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

cn.featherfly.conversion.string.basic.LongConvertor Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version

package cn.featherfly.conversion.string.basic;



/**
 * 

* 长整数转换器 *

* * @author 钟冀 */ public class LongConvertor extends NumberBasicTypeConvertor{ /** */ public LongConvertor() { } /** * {@inheritDoc} */ @Override public Class getSourceType() { return long.class; } // /** // * {@inheritDoc} // */ // @Override // protected Long doToObject(String value, GenericType genericType) { // if (StringUtils.isNotBlank(value)) { // return Long.parseLong(value); // } // return -1L; // } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy