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

com.javaoffers.brief.modelhelper.convert.String2CharConvert 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:49
 */
public class String2CharConvert extends AbstractConver {
    @Override
    public Character convert(String s) {
        return new Character(s.toCharArray()[0]);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy