You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/sites/groupdocs/conversion/english/java/com.groupdocs.conversion.fluent/iconversionloadoptions/_index.md
+22-6Lines changed: 22 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,16 +14,17 @@ Conversion load options
14
14
15
15
| Method | Description |
16
16
| --- | --- |
17
-
| [withOptions(LoadOptions loadOptions)](#withOptions-com.groupdocs.conversion.options.load.LoadOptions-) | Set load options |
18
-
| [withOptions(LoadOptionsProvider loadOptionsProvider)](#withOptions-com.groupdocs.conversion.contracts.LoadOptionsProvider-) | Set load options |
19
-
| [withOptions(LoadOptionsForFileTypeProvider loadOptionsProvider)](#withOptions-com.groupdocs.conversion.contracts.LoadOptionsForFileTypeProvider-) | Set load options for specified file type |
17
+
| [withOptions(LoadOptions loadOptions)](#withOptions-com.groupdocs.conversion.options.load.LoadOptions-) | Provide load options for the document currently being loading |
18
+
| [withOptions(LoadOptionsProvider loadOptionsProvider)](#withOptions-com.groupdocs.conversion.contracts.LoadOptionsProvider-) | Provide load options for the document currently being loading |
19
+
| [withOptions(LoadOptionsForFileTypeProvider loadOptionsProvider)](#withOptions-com.groupdocs.conversion.contracts.LoadOptionsForFileTypeProvider-) | Provide load options for the document currently being loading |
20
+
| [withOptions(LoadOptionsForNameFileTypeStreamProvider loadOptionsProvider)](#withOptions-com.groupdocs.conversion.contracts.LoadOptionsForNameFileTypeStreamProvider-) | Provide load options for the document currently being loading Load options provider The name of the loaded file The type of the loaded file The content of the loaded file |
public abstract IConversionSourceDocumentLoaded withOptions(LoadOptionsForNameFileTypeStreamProvider loadOptionsProvider)
69
+
```
70
+
71
+
72
+
Provide load options for the document currently being loading Load options provider The name of the loaded file The type of the loaded file The content of the loaded file
Copy file name to clipboardExpand all lines: content/sites/groupdocs/conversion/english/java/com.groupdocs.conversion/converter/_index.md
+52-6Lines changed: 52 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,13 +26,16 @@ Represents main class that controls document conversion process.
26
26
|[Converter(Supplier<InputStream> document, LoadOptionsProvider loadOptions)](#Converter-java.util.function.Supplier-java.io.InputStream--com.groupdocs.conversion.contracts.LoadOptionsProvider-)| Initializes new instance of [Converter](../../com.groupdocs.conversion/converter) class. |
27
27
|[Converter(Supplier<InputStream> document, LoadOptionsProvider loadOptions, ConverterSettingsProvider settings)](#Converter-java.util.function.Supplier-java.io.InputStream--com.groupdocs.conversion.contracts.LoadOptionsProvider-com.groupdocs.conversion.contracts.ConverterSettingsProvider-)| Initializes new instance of [Converter](../../com.groupdocs.conversion/converter) class. |
28
28
|[Converter(Supplier<InputStream> document, LoadOptionsForFileTypeProvider loadOptions)](#Converter-java.util.function.Supplier-java.io.InputStream--com.groupdocs.conversion.contracts.LoadOptionsForFileTypeProvider-)| Initializes new instance of class. |
29
-
|[Converter(Supplier<InputStream> document, LoadOptionsForFileTypeProvider loadOptions, ConverterSettingsProvider settings)](#Converter-java.util.function.Supplier-java.io.InputStream--com.groupdocs.conversion.contracts.LoadOptionsForFileTypeProvider-com.groupdocs.conversion.contracts.ConverterSettingsProvider-)| Initializes new instance of class. |
29
+
|[Converter(Supplier<InputStream> document, LoadOptionsForNameFileTypeStreamProvider loadOptions)](#Converter-java.util.function.Supplier-java.io.InputStream--com.groupdocs.conversion.contracts.LoadOptionsForNameFileTypeStreamProvider-)| Initializes new instance of class. |
30
+
|[Converter(Supplier<InputStream> document, LoadOptionsForNameFileTypeStreamProvider loadOptions, ConverterSettingsProvider settings)](#Converter-java.util.function.Supplier-java.io.InputStream--com.groupdocs.conversion.contracts.LoadOptionsForNameFileTypeStreamProvider-com.groupdocs.conversion.contracts.ConverterSettingsProvider-)| Initializes new instance of class. |
30
31
|[Converter(String filePath)](#Converter-java.lang.String-)| Initializes new instance of [Converter](../../com.groupdocs.conversion/converter) class. |
31
32
|[Converter(String filePath, ConverterSettingsProvider settings)](#Converter-java.lang.String-com.groupdocs.conversion.contracts.ConverterSettingsProvider-)| Initializes new instance of [Converter](../../com.groupdocs.conversion/converter) class. |
32
33
|[Converter(String filePath, LoadOptionsProvider loadOptions)](#Converter-java.lang.String-com.groupdocs.conversion.contracts.LoadOptionsProvider-)| Initializes new instance of [Converter](../../com.groupdocs.conversion/converter) class. |
33
34
|[Converter(String filePath, LoadOptionsProvider loadOptions, ConverterSettingsProvider settings)](#Converter-java.lang.String-com.groupdocs.conversion.contracts.LoadOptionsProvider-com.groupdocs.conversion.contracts.ConverterSettingsProvider-)| Initializes new instance of [Converter](../../com.groupdocs.conversion/converter) class. |
34
35
|[Converter(String filePath, LoadOptionsForFileTypeProvider loadOptions)](#Converter-java.lang.String-com.groupdocs.conversion.contracts.LoadOptionsForFileTypeProvider-)| Initializes new instance of class. |
35
-
|[Converter(String filePath, LoadOptionsForFileTypeProvider loadOptions, ConverterSettingsProvider settings)](#Converter-java.lang.String-com.groupdocs.conversion.contracts.LoadOptionsForFileTypeProvider-com.groupdocs.conversion.contracts.ConverterSettingsProvider-)| Initializes new instance of class. |
|[Converter(String filePath, LoadOptionsForNameFileTypeStreamProvider loadOptions, ConverterSettingsProvider settings)](#Converter-java.lang.String-com.groupdocs.conversion.contracts.LoadOptionsForNameFileTypeStreamProvider-com.groupdocs.conversion.contracts.ConverterSettingsProvider-)| Initializes new instance of class. |
36
39
## Methods
37
40
38
41
| Method | Description |
@@ -181,9 +184,9 @@ Initializes new instance of class.**Learn more**More about how to load and conv
181
184
| document | java.util.function.Supplier<java.io.InputStream> | An input stream supplier. |
182
185
| loadOptions |[LoadOptionsForFileTypeProvider](../../com.groupdocs.conversion.contracts/loadoptionsforfiletypeprovider)| The function that return document load options. |
public Converter(Supplier<InputStream> document, LoadOptionsForFileTypeProvider loadOptions, ConverterSettingsProvider settings)
189
+
public Converter(Supplier<InputStream> document, LoadOptionsForNameFileTypeStreamProvider loadOptions)
187
190
```
188
191
189
192
@@ -197,7 +200,25 @@ Initializes new instance of class.**Learn more**More about how to load and conv
197
200
| Parameter | Type | Description |
198
201
| --- | --- | --- |
199
202
| document | java.util.function.Supplier<java.io.InputStream> | A supplier that returns readable stream. |
200
-
| loadOptions |[LoadOptionsForFileTypeProvider](../../com.groupdocs.conversion.contracts/loadoptionsforfiletypeprovider)| A function that returns document load options. |
203
+
| loadOptions |[LoadOptionsForNameFileTypeStreamProvider](../../com.groupdocs.conversion.contracts/loadoptionsfornamefiletypestreamprovider)| A function that returns document load options. |
public Converter(Supplier<InputStream> document, LoadOptionsForNameFileTypeStreamProvider loadOptions, ConverterSettingsProvider settings)
208
+
```
209
+
210
+
211
+
Initializes new instance of class.**Learn more**More about how to load and convert documents stored at FTP, Amazon S3 Storage, Windows Azure or any other third-party storage: [Loading document from different sources][]More about document loading options dependent on file type: [Load options for different document types][]
212
+
213
+
214
+
[Loading document from different sources]: https://docs.groupdocs.com/display/conversionnet/Loading+documents+from+different+sources
215
+
[Load options for different document types]: https://docs.groupdocs.com/display/conversionnet/Load+options+for+different+document+types
216
+
217
+
**Parameters:**
218
+
| Parameter | Type | Description |
219
+
| --- | --- | --- |
220
+
| document | java.util.function.Supplier<java.io.InputStream> | A supplier that returns readable stream. |
221
+
| loadOptions |[LoadOptionsForNameFileTypeStreamProvider](../../com.groupdocs.conversion.contracts/loadoptionsfornamefiletypestreamprovider)| A function that returns document load options. |
201
222
| settings |[ConverterSettingsProvider](../../com.groupdocs.conversion.contracts/convertersettingsprovider)| A Converter settings supplier. |
public Converter(String filePath, LoadOptionsForNameFileTypeStreamProvider loadOptions, ConverterSettingsProvider settings)
350
+
```
351
+
352
+
307
353
Initializes new instance of class.**Learn more**More about how to load and convert documents stored at FTP, Amazon S3 Storage, Windows Azure or any other third-party storage: [Loading document from different sources][]More about document loading options dependent on file type: [Load options for different document types][]
308
354
309
355
@@ -314,7 +360,7 @@ Initializes new instance of class.**Learn more**More about how to load and conv
314
360
| Parameter | Type | Description |
315
361
| --- | --- | --- |
316
362
| filePath | java.lang.String | The file path to the source document. |
317
-
| loadOptions |[LoadOptionsForFileTypeProvider](../../com.groupdocs.conversion.contracts/loadoptionsforfiletypeprovider)| The document load options function. |
363
+
| loadOptions |[LoadOptionsForNameFileTypeStreamProvider](../../com.groupdocs.conversion.contracts/loadoptionsfornamefiletypestreamprovider)| The document load options function. |
318
364
| settings |[ConverterSettingsProvider](../../com.groupdocs.conversion.contracts/convertersettingsprovider)| The Converter settings supplier. |
0 commit comments