Uses of Class
com.vladsch.flexmark.util.data.DataKey
-
-
Uses of DataKey in com.vladsch.flexmark.util.data
Methods in com.vladsch.flexmark.util.data with parameters of type DataKey Modifier and Type Method Description default <T> TDataHolder. get(@NotNull DataKey<T> key)Deprecated.default <T> TMutableDataHolder. get(@NotNull DataKey<T> key)Deprecated.use key.get(dataHolder) instead, which will do the same thing an carries nullable information for the data<T> @NotNull MutableDataHolderMutableDataHolder. set(@NotNull DataKey<T> key, T value)Store the given value for the key<T> @NotNull MutableDataSetMutableDataSet. set(@NotNull DataKey<T> key, T value)Constructors in com.vladsch.flexmark.util.data with parameters of type DataKey Constructor Description DataKey(@NotNull String name, @NotNull DataKey<T> defaultKey)Creates a DataKey with a dynamic default value taken from a value of another key
-