Java com.itextpdf.text.io RandomAccessSourceFactory fields, constructors, methods, implement or subclass

Example usage for Java com.itextpdf.text.io RandomAccessSourceFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.itextpdf.text.io RandomAccessSourceFactory.

The text is from its open source code.

Constructor

RandomAccessSourceFactory()
Creates a factory that will give preference to accessing the underling data source using memory mapped files

Method

RandomAccessSourcecreateBestSource(String filename)
Creates a RandomAccessSource based on a filename string.
RandomAccessSourcecreateBestSource(RandomAccessFile raf)
Creates a RandomAccessSource based on a RandomAccessFile.
RandomAccessSourcecreateBestSource(FileChannel channel)
Creates a RandomAccessSource based on memory mapping a file channel.
RandomAccessSourcecreateSource(byte[] data)
Creates a RandomAccessSource based on a byte array
RandomAccessSourcecreateSource(RandomAccessFile raf)
RandomAccessSourcecreateSource(URL url)
Creates a RandomAccessSource based on a URL.
RandomAccessSourcecreateSource(InputStream is)
Creates a RandomAccessSource based on an InputStream .