com.vladsch.flexmark.util.data.NotNullValueSupplier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-util-data Show documentation
Show all versions of flexmark-util-data Show documentation
flexmark-java data utility classes
The newest version!
package com.vladsch.flexmark.util.data;
import java.util.function.Supplier;
import org.jetbrains.annotations.NotNull;
public interface NotNullValueSupplier extends Supplier {
@NotNull
@Override
T get();
}