com.vladsch.flexmark.util.data.MutableDataValueSetter 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;
public interface MutableDataValueSetter {
@NotNull
MutableDataHolder set(@NotNull MutableDataHolder dataHolder, T value);
}