Package com.bumptech.glide.load.data
Class DataRewinderRegistry
- java.lang.Object
-
- com.bumptech.glide.load.data.DataRewinderRegistry
-
public class DataRewinderRegistry extends java.lang.ObjectStores a mapping of data class toDataRewinder.Factoryand allows registration of new types and factories.
-
-
Constructor Summary
Constructors Constructor Description DataRewinderRegistry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> DataRewinder<T>build(T data)voidregister(DataRewinder.Factory<?> factory)
-
-
-
Method Detail
-
register
public void register(@NonNull DataRewinder.Factory<?> factory)
-
build
@NonNull public <T> DataRewinder<T> build(@NonNull T data)
-
-