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

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

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

/**
 * @Description: String2ByteConvert
 * @Auther: create by cmj on 2021/12/10 12:17
 */
public class String2ByteConvert extends AbstractConver {
    @Override
    public Byte convert(String s) {
        byte b = Byte.parseByte(s);
        return b;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy