Uses of Interface
com.bc.ceres.binio.DataContext
-
Packages that use DataContext Package Description com.bc.ceres.binio The corebinio
API.com.bc.ceres.binio.util Utilities for thebinio
API. -
-
Uses of DataContext in com.bc.ceres.binio
Methods in com.bc.ceres.binio that return DataContext Modifier and Type Method Description DataContext
DataFormat. createContext(IOHandler ioHandler)
DataContext
DataFormat. createContext(File file, String mode)
Creates a new random access file data context.DataContext
DataFormat. createContext(RandomAccessFile raf)
DataContext
DataFormat. createContext(FileChannel fileChannel)
DataContext
CollectionData. getContext()
Methods in com.bc.ceres.binio with parameters of type DataContext Modifier and Type Method Description void
IOHandler. read(DataContext context, byte[] data, long position)
Reads a sequence of up todata.length
bytes into the given array starting from the the given position.void
IOHandler. write(DataContext context, byte[] data, long position)
Writes a sequence of up todata.length
bytes to the file, starting at the given position. -
Uses of DataContext in com.bc.ceres.binio.util
Methods in com.bc.ceres.binio.util with parameters of type DataContext Modifier and Type Method Description void
ByteArrayIOHandler. read(DataContext context, byte[] data, long position)
void
FileChannelIOHandler. read(DataContext context, byte[] data, long position)
void
FilterIOHandler. read(DataContext context, byte[] data, long position)
void
ImageIOHandler. read(DataContext context, byte[] data, long position)
void
MappedFileChannelIOHandler. read(DataContext context, byte[] data, long position)
void
RandomAccessFileIOHandler. read(DataContext context, byte[] data, long position)
void
ByteArrayIOHandler. write(DataContext context, byte[] data, long position)
void
FileChannelIOHandler. write(DataContext context, byte[] data, long position)
void
FilterIOHandler. write(DataContext context, byte[] data, long position)
void
ImageIOHandler. write(DataContext context, byte[] data, long position)
void
MappedFileChannelIOHandler. write(DataContext context, byte[] data, long position)
void
RandomAccessFileIOHandler. write(DataContext context, byte[] data, long position)
-