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

org.archive.format.cdx.CDXInputSource Maven / Gradle / Ivy

There is a newer version: 1.1.9
Show newest version
package org.archive.format.cdx;

import java.io.IOException;

import org.archive.format.gzip.zipnum.ZipNumParams;
import org.archive.util.iterator.CloseableIterator;

public interface CDXInputSource {

	public CloseableIterator getCDXIterator(String key, String prefix, boolean exact, ZipNumParams params) throws IOException;
	public CloseableIterator getCDXIterator(String key, String start, String startEndUrl, ZipNumParams params) throws IOException;
	
	public long getTotalLines();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy