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

emujava.nio.channels.FileChannel Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package emujava.nio.channels;

import java.nio.ByteBuffer;

public abstract class FileChannel {

    public static class MapMode {
        public static final MapMode READ_ONLY = new MapMode();
        public static final MapMode READ_WRITE = new MapMode();
        public static final MapMode PRIVATE = new MapMode();
    }

    public abstract ByteBuffer map (java.nio.channels.FileChannel.MapMode mode, long position, long size);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy