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

com.happy3w.toolkits.convert.StrBigDecimalTci Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package com.happy3w.toolkits.convert;

import java.math.BigDecimal;

public class StrBigDecimalTci extends AbstractTci {
    public StrBigDecimalTci() {
        super(String.class, BigDecimal.class);
    }

    @Override
    public BigDecimal toTarget(String source) {
        return new BigDecimal(source);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy