Uses of Class
com.vladsch.flexmark.util.data.DataKeyBase
-
-
Uses of DataKeyBase in com.vladsch.flexmark.util.data
Subclasses of DataKeyBase in com.vladsch.flexmark.util.data Modifier and Type Class Description classDataKey<T>NOTE: Constructors have changed in a breaking way from 0.50.x and prior implementationsclassNullableDataKey<T>Fields in com.vladsch.flexmark.util.data with type parameters of type DataKeyBase Modifier and Type Field Description protected HashMap<DataKeyBase<?>,Object>DataSet. dataSetMethods in com.vladsch.flexmark.util.data that return types with arguments of type DataKeyBase Modifier and Type Method Description @NotNull Map<? extends DataKeyBase<?>,Object>DataHolder. getAll()@NotNull Map<? extends DataKeyBase<?>,Object>DataSet. getAll()@NotNull Map<? extends DataKeyBase<?>,Object>MutableScopedDataSet. getAll()@NotNull Map<? extends DataKeyBase<?>,Object>ScopedDataSet. getAll()@NotNull Collection<? extends DataKeyBase<?>>DataHolder. getKeys()@NotNull Collection<? extends DataKeyBase<?>>DataSet. getKeys()@NotNull Collection<? extends DataKeyBase<?>>MutableScopedDataSet. getKeys()@NotNull Collection<? extends DataKeyBase<?>>ScopedDataSet. getKeys()Methods in com.vladsch.flexmark.util.data with parameters of type DataKeyBase Modifier and Type Method Description booleanDataHolder. contains(@NotNull DataKeyBase<?> key)booleanDataSet. contains(@NotNull DataKeyBase<?> key)booleanMutableScopedDataSet. contains(@NotNull DataKeyBase<?> key)booleanScopedDataSet. contains(@NotNull DataKeyBase<?> key)ObjectDataHolder. getOrCompute(@NotNull DataKeyBase<?> key, @NotNull DataValueFactory<?> factory)Get key if it exists or compute using supplier@Nullable ObjectDataSet. getOrCompute(@NotNull DataKeyBase<?> key, @NotNull DataValueFactory<?> factory)ObjectMutableDataHolder. getOrCompute(@NotNull DataKeyBase<?> key, @NotNull DataValueFactory<?> factory)@Nullable ObjectMutableDataSet. getOrCompute(@NotNull DataKeyBase<?> key, @NotNull DataValueFactory<?> factory)@Nullable ObjectMutableScopedDataSet. getOrCompute(@NotNull DataKeyBase<?> key, @NotNull DataValueFactory<?> factory)@Nullable ObjectScopedDataSet. getOrCompute(@NotNull DataKeyBase<?> key, @NotNull DataValueFactory<?> factory)@NotNull MutableDataHolderMutableDataHolder. remove(@NotNull DataKeyBase<?> key)Remove the stored value for the key, used to force to default or to force recompute@NotNull MutableDataSetMutableDataSet. remove(@NotNull DataKeyBase<?> key)Constructors in com.vladsch.flexmark.util.data with parameters of type DataKeyBase Constructor Description DataKeyBase(@NotNull String name, @NotNull DataKeyBase<T> defaultKey)Creates a NullableDataKey with a dynamic default value taken from a value of another keyNullableDataKey(@NotNull String name, @NotNull DataKeyBase<T> defaultKey)Creates a NullableDataKey with a dynamic default value taken from a value of another key
-