javafixes.object.Value Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javafixes Show documentation
Show all versions of javafixes Show documentation
Things I would like to have in Java by default
package javafixes.object;
// todo: javadoc
public interface Value {
T value();
default T getValue() {
return value();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy