org.apache.maven.shared.io.location.Location Maven / Gradle / Ivy
package org.apache.maven.shared.io.location;
import java.io.File;
import java.io.IOException;
import java.nio.ByteBuffer;
public interface Location
{
File getFile() throws IOException;
void open() throws IOException;
void close();
int read( ByteBuffer buffer ) throws IOException;
int read( byte[] buffer ) throws IOException;
String getSpecification();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy