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

org.apache.maven.shared.io.location.Location Maven / Gradle / Ivy

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