com.g2forge.alexandria.wizard.AInput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ax-wizard Show documentation
Show all versions of ax-wizard Show documentation
Library for building command line and GUI wizards.
The newest version!
package com.g2forge.alexandria.wizard;
import com.g2forge.alexandria.java.fluent.optional.AOptional;
import com.g2forge.alexandria.java.fluent.optional.NullableOptional;
public abstract class AInput extends AOptional {
@Override
protected AOptional create() {
return NullableOptional.empty();
}
@Override
protected AOptional create(U value) {
return NullableOptional.of(value);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy