![JAR search and dependency download from the Maven repository](/logo.png)
com.bumptech.glide.provider.ImageHeaderParserRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glide Show documentation
Show all versions of glide Show documentation
A fast and efficient image loading library for Android focused on smooth scrolling.
package com.bumptech.glide.provider;
import com.bumptech.glide.load.ImageHeaderParser;
import java.util.ArrayList;
import java.util.List;
/**
* Contains an unordered list of {@link ImageHeaderParser}s capable of parsing image headers.
*/
public final class ImageHeaderParserRegistry {
private final List parsers = new ArrayList<>();
public synchronized List getParsers() {
return parsers;
}
public synchronized void add(ImageHeaderParser parser) {
parsers.add(parser);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy