![JAR search and dependency download from the Maven repository](/logo.png)
com.g2forge.alexandria.java.concurrent.Constant Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ax-java Show documentation
Show all versions of ax-java Show documentation
Standard Java library and the basis of the ${alexandria.name} project.
package com.g2forge.alexandria.java.concurrent;
import java.util.function.Supplier;
import lombok.RequiredArgsConstructor;
@RequiredArgsConstructor
public class Constant implements IFuture, Supplier {
protected final T value;
@Override
public T get() {
return value;
}
@Override
public T get0() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy