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

com.javaoffers.brief.modelhelper.convert.String2LongConvert Maven / Gradle / Ivy

There is a newer version: 3.6.8
Show newest version
package com.javaoffers.brief.modelhelper.convert;

/**
 * @Description:
 * @Auther: create by cmj on 2021/12/10 12:56
 */
public class String2LongConvert extends AbstractConver {
    @Override
    public Long convert(String s) {
        return Long.parseLong(s);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy