This repository has been archived on 2023-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
data-generator-runtime/src/main/java/it/cavallium/data/generator/TypedNullable.java

10 lines
194 B
Java

package it.cavallium.data.generator;
import org.jetbrains.annotations.NotNull;
public interface TypedNullable<T> extends NativeNullable<T> {
@NotNull
T get() throws NullPointerException;
}