All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bumptech.glide.provider.ImageHeaderParserRegistry Maven / Gradle / Ivy

Go to download

A fast and efficient image loading library for Android focused on smooth scrolling.

There is a newer version: 5.0.0-rc01
Show newest version
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