Skip to content

Commit cef6624

Browse files
Update file(s) "/." from "groupdocs-conversion/Groupdocs.Conversion-References"
1 parent d6c236e commit cef6624

2 files changed

Lines changed: 74 additions & 12 deletions

File tree

  • content/sites/groupdocs/conversion/english/java
    • com.groupdocs.conversion.fluent/iconversionloadoptions
    • com.groupdocs.conversion/converter

content/sites/groupdocs/conversion/english/java/com.groupdocs.conversion.fluent/iconversionloadoptions/_index.md

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,17 @@ Conversion load options
1414

1515
| Method | Description |
1616
| --- | --- |
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 |
2021
### withOptions(LoadOptions loadOptions) {#withOptions-com.groupdocs.conversion.options.load.LoadOptions-}
2122
```
2223
public abstract IConversionSourceDocumentLoaded withOptions(LoadOptions loadOptions)
2324
```
2425

2526

26-
Set load options
27+
Provide load options for the document currently being loading
2728

2829
**Parameters:**
2930
| Parameter | Type | Description |
@@ -38,7 +39,7 @@ public abstract IConversionSourceDocumentLoaded withOptions(LoadOptionsProvider
3839
```
3940

4041

41-
Set load options
42+
Provide load options for the document currently being loading
4243

4344
**Parameters:**
4445
| Parameter | Type | Description |
@@ -53,7 +54,7 @@ public abstract IConversionSourceDocumentLoaded withOptions(LoadOptionsForFileTy
5354
```
5455

5556

56-
Set load options for specified file type
57+
Provide load options for the document currently being loading
5758

5859
**Parameters:**
5960
| Parameter | Type | Description |
@@ -62,3 +63,18 @@ Set load options for specified file type
6263

6364
**Returns:**
6465
[IConversionSourceDocumentLoaded](../../com.groupdocs.conversion.fluent/iconversionsourcedocumentloaded)
66+
### withOptions(LoadOptionsForNameFileTypeStreamProvider loadOptionsProvider) {#withOptions-com.groupdocs.conversion.contracts.LoadOptionsForNameFileTypeStreamProvider-}
67+
```
68+
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
73+
74+
**Parameters:**
75+
| Parameter | Type | Description |
76+
| --- | --- | --- |
77+
| loadOptionsProvider | [LoadOptionsForNameFileTypeStreamProvider](../../com.groupdocs.conversion.contracts/loadoptionsfornamefiletypestreamprovider) | |
78+
79+
**Returns:**
80+
[IConversionSourceDocumentLoaded](../../com.groupdocs.conversion.fluent/iconversionsourcedocumentloaded)

content/sites/groupdocs/conversion/english/java/com.groupdocs.conversion/converter/_index.md

Lines changed: 52 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,16 @@ Represents main class that controls document conversion process.
2626
| [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. |
2727
| [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. |
2828
| [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. |
3031
| [Converter(String filePath)](#Converter-java.lang.String-) | Initializes new instance of [Converter](../../com.groupdocs.conversion/converter) class. |
3132
| [Converter(String filePath, ConverterSettingsProvider settings)](#Converter-java.lang.String-com.groupdocs.conversion.contracts.ConverterSettingsProvider-) | Initializes new instance of [Converter](../../com.groupdocs.conversion/converter) class. |
3233
| [Converter(String filePath, LoadOptionsProvider loadOptions)](#Converter-java.lang.String-com.groupdocs.conversion.contracts.LoadOptionsProvider-) | Initializes new instance of [Converter](../../com.groupdocs.conversion/converter) class. |
3334
| [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. |
3435
| [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. |
36+
| [Converter(String filePath, LoadOptionsForFileTypeProvider loadOptions, ConverterSettingsProvider settings)](#Converter-java.lang.String-com.groupdocs.conversion.contracts.LoadOptionsForFileTypeProvider-com.groupdocs.conversion.contracts.ConverterSettingsProvider-) | |
37+
| [Converter(String filePath, LoadOptionsForNameFileTypeStreamProvider loadOptions)](#Converter-java.lang.String-com.groupdocs.conversion.contracts.LoadOptionsForNameFileTypeStreamProvider-) | |
38+
| [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. |
3639
## Methods
3740

3841
| Method | Description |
@@ -181,9 +184,9 @@ Initializes new instance of class.**Learn more**More about how to load and conv
181184
| document | java.util.function.Supplier<java.io.InputStream> | An input stream supplier. |
182185
| loadOptions | [LoadOptionsForFileTypeProvider](../../com.groupdocs.conversion.contracts/loadoptionsforfiletypeprovider) | The function that return document load options. |
183186

184-
### 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-}
187+
### Converter(Supplier<InputStream> document, LoadOptionsForNameFileTypeStreamProvider loadOptions) {#Converter-java.util.function.Supplier-java.io.InputStream--com.groupdocs.conversion.contracts.LoadOptionsForNameFileTypeStreamProvider-}
185188
```
186-
public Converter(Supplier<InputStream> document, LoadOptionsForFileTypeProvider loadOptions, ConverterSettingsProvider settings)
189+
public Converter(Supplier<InputStream> document, LoadOptionsForNameFileTypeStreamProvider loadOptions)
187190
```
188191

189192

@@ -197,7 +200,25 @@ Initializes new instance of class.**Learn more**More about how to load and conv
197200
| Parameter | Type | Description |
198201
| --- | --- | --- |
199202
| 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. |
204+
205+
### 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-}
206+
```
207+
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. |
201222
| settings | [ConverterSettingsProvider](../../com.groupdocs.conversion.contracts/convertersettingsprovider) | A Converter settings supplier. |
202223

203224
### Converter(String filePath) {#Converter-java.lang.String-}
@@ -304,6 +325,31 @@ public Converter(String filePath, LoadOptionsForFileTypeProvider loadOptions, Co
304325
```
305326

306327

328+
**Parameters:**
329+
| Parameter | Type | Description |
330+
| --- | --- | --- |
331+
| filePath | java.lang.String | |
332+
| loadOptions | [LoadOptionsForFileTypeProvider](../../com.groupdocs.conversion.contracts/loadoptionsforfiletypeprovider) | |
333+
| settings | [ConverterSettingsProvider](../../com.groupdocs.conversion.contracts/convertersettingsprovider) | |
334+
335+
### Converter(String filePath, LoadOptionsForNameFileTypeStreamProvider loadOptions) {#Converter-java.lang.String-com.groupdocs.conversion.contracts.LoadOptionsForNameFileTypeStreamProvider-}
336+
```
337+
public Converter(String filePath, LoadOptionsForNameFileTypeStreamProvider loadOptions)
338+
```
339+
340+
341+
**Parameters:**
342+
| Parameter | Type | Description |
343+
| --- | --- | --- |
344+
| filePath | java.lang.String | |
345+
| loadOptions | [LoadOptionsForNameFileTypeStreamProvider](../../com.groupdocs.conversion.contracts/loadoptionsfornamefiletypestreamprovider) | |
346+
347+
### Converter(String filePath, LoadOptionsForNameFileTypeStreamProvider loadOptions, ConverterSettingsProvider settings) {#Converter-java.lang.String-com.groupdocs.conversion.contracts.LoadOptionsForNameFileTypeStreamProvider-com.groupdocs.conversion.contracts.ConverterSettingsProvider-}
348+
```
349+
public Converter(String filePath, LoadOptionsForNameFileTypeStreamProvider loadOptions, ConverterSettingsProvider settings)
350+
```
351+
352+
307353
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][]
308354

309355

@@ -314,7 +360,7 @@ Initializes new instance of class.**Learn more**More about how to load and conv
314360
| Parameter | Type | Description |
315361
| --- | --- | --- |
316362
| 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. |
318364
| settings | [ConverterSettingsProvider](../../com.groupdocs.conversion.contracts/convertersettingsprovider) | The Converter settings supplier. |
319365

320366
### tweakPackageUtil(String vendor, String version, String specTitle) {#tweakPackageUtil-java.lang.String-java.lang.String-java.lang.String-}

0 commit comments

Comments
 (0)