ILoadOptions
All Implemented Interfaces: com.groupdocs.merger.domain.options.interfaces.IOptions
public interface ILoadOptions extends IOptions
Interface for the document loading options.
Methods
Method | Description |
---|---|
getType() | The type of the file to open. |
getPassword() | The password for opening password-protected file. |
getExtension() | The extension of the file to open. |
getEncoding() | The encoding used when opening text-based files such as FileType.CSV or FileType.TXT. |
getType()
public abstract FileType getType()
The type of the file to open.
Returns: FileType
getPassword()
public abstract String getPassword()
The password for opening password-protected file.
Returns: java.lang.String
getExtension()
public abstract String getExtension()
The extension of the file to open.
Returns: java.lang.String
getEncoding()
public abstract Charset getEncoding()
The encoding used when opening text-based files such as FileType.CSV or FileType.TXT. Default value is DefaultCharset.
Returns: java.nio.charset.Charset