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

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

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

import java.util.Date;

public class DateLongBiTci extends AbstractBiTci {
    public DateLongBiTci() {
        super(Date.class, Long.class);
    }

    @Override
    public Long toTarget(Date source) {
        return source.getTime();
    }

    @Override
    public Date toSource(Long source) {
        return new Date(source);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy