ai.timefold.solver.quarkus.deployment.DetermineIfNativeBuildItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of timefold-solver-quarkus-deployment Show documentation
Show all versions of timefold-solver-quarkus-deployment Show documentation
Quarkus deployment module for timefold-solver-quarkus.
package ai.timefold.solver.quarkus.deployment;
import io.quarkus.builder.item.SimpleBuildItem;
public final class DetermineIfNativeBuildItem extends SimpleBuildItem {
private final boolean isNative;
public DetermineIfNativeBuildItem(boolean isNative) {
this.isNative = isNative;
}
public boolean isNative() {
return isNative;
}
}