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

top.wboost.common.util.Convert Maven / Gradle / Ivy

package top.wboost.common.util;

public interface Convert {

    public T warp(Object obj);

    public T getByByte(Byte bytes);

    public T getByShort(Short shorts);

    public T getByInteger(Integer integer);

    public T getByString(String string);

    public T getByLong(Long longV);

    public T getByDouble(Double doubles);

    public T getByChar(char chars);

    public T getByFloat(Float floats);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy