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

io.github.bakedlibs.dough.versions.Versioned Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package io.github.bakedlibs.dough.versions;

import javax.annotation.Nonnull;

/**
 * This interface marks something as "versioned" which means that it has a {@link Version}
 * that may change over time. Either at runtime or inbetween runs.
 * 
 * @author TheBusyBiscuit
 *
 */
@FunctionalInterface
public interface Versioned {

    /**
     * This returns the current {@link Version} of this object.
     * 
     * @return The {@link Version} of this object
     */
    @Nonnull
    Version getVersion();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy