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

com.rapiddweller.common.Dated Maven / Gradle / Ivy

Go to download

'rapiddweller Common' is an open source Java library forked from Databene Commons by Volker Bergmann. It provides extensions to the Java core library by utility classes, abstract concepts and concrete implementations.

There is a newer version: 2.0.1-jdk-11
Show newest version
/* (c) Copyright 2013 by Volker Bergmann. All rights reserved. */

package com.rapiddweller.common;

import java.util.Date;

/**
 * Interface for classes with a {@link #getDate()} method.

* Created: 03.11.2013 23:37:51 * * @author Volker Bergmann * @since 1.0 */ public interface Dated { /** * Gets date. * * @return the date */ Date getDate(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy