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

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

There is a newer version: 1.1
Show newest version
/*
 * @(#)DateValueFormatter.java  1.0  2010-07-24
 * 
 * Copyright (c) 2010 Werner Randelshofer, Goldau, Switzerland.
 * All rights reserved.
 *
 * You may not use, copy or modify this file, except in compliance with the
 * license agreement you entered into with Werner Randelshofer.
 * For details see accompanying license terms.
 */

package org.monte.media.tiff;

/**
 * DateValueFormatter.
 *
 * @author Werner Randelshofer
 * @version 1.0 2010-07-24 Created.
 */
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