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

org.monte.media.tiff.DateValueFormatter Maven / Gradle / Ivy

The newest version!


package org.monte.media.tiff;


public class DateValueFormatter implements ValueFormatter {

    public DateValueFormatter() {
    }

    @Override
    public Object format(Object value) {
        return value;
    }

    @Override
    public Object prettyFormat(Object value) {
        return value;
    }

    @Override
    public String descriptionFormat(Object data) {
       return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy