com.vladsch.flexmark.util.data.DataNotNullValueNullableFactory 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 org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
public interface DataNotNullValueNullableFactory extends DataNotNullValueFactory {
@Override
@NotNull
T apply(@Nullable DataHolder dataHolder);
}