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

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

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

public class NumDoubleTci extends AbstractTci {
    public NumDoubleTci() {
        super(Number.class, Double.class);
    }

    @Override
    public Double toTarget(Number source) {
        return source.doubleValue();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy