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

com.silentgo.utils.convertor.StringToLongConvertor Maven / Gradle / Ivy

There is a newer version: 0.1.16
Show newest version
package com.silentgo.utils.convertor;


import com.silentgo.utils.inter.ITypeConvertor;

/**
 * Project : silentgo
 * com.silentgo.kit.typeconvert.support
 *
 * @author teddyzhu
 *         

* Created by teddyzhu on 16/8/20. */ public class StringToLongConvertor implements ITypeConvertor { @Override public Long convert(String source, Object... objects) { return Long.valueOf(source); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy