public class ExportOptions
extends java.lang.Object
Represents export options.
Exporter| Constructor and Description |
|---|
ExportOptions() |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<PersistentCollection<?>> |
getCollections()
Specifies a list of
PersistentCollections to be exported. |
boolean |
isExportData()
Indicates if the export operation exports collection data.
|
boolean |
isExportIndices()
Indicates if the export operation exports indices information.
|
void |
setCollections(java.util.List<PersistentCollection<?>> collections)
Specifies a list of
PersistentCollections to be exported. |
void |
setExportData(boolean exportData)
Indicates if the export operation exports collection data.
|
void |
setExportIndices(boolean exportIndices)
Indicates if the export operation exports indices information.
|
@Generated(value="lombok") public boolean isExportIndices()
Indicates if the export operation exports indices information.
|
Default value is true.
|
true if indices information is exported; otherwise, false.@Generated(value="lombok") public boolean isExportData()
Indicates if the export operation exports collection data.
|
Default value is true.
|
true if collection data is exported; otherwise, false.@Generated(value="lombok") public java.util.List<PersistentCollection<?>> getCollections()
Specifies a list of PersistentCollections to be exported.
|
If empty, all collections will be exported. |
@Generated(value="lombok") public void setExportIndices(boolean exportIndices)
Indicates if the export operation exports indices information.
|
Default value is true.
|
exportIndices - a value indicating if indices information will be exported.@Generated(value="lombok") public void setExportData(boolean exportData)
Indicates if the export operation exports collection data.
|
Default value is true.
|
exportData - a value indicating if collection data will be exported.@Generated(value="lombok") public void setCollections(java.util.List<PersistentCollection<?>> collections)
Specifies a list of PersistentCollections to be exported.
|
If empty, all collections will be exported. |
collections - list of all collections to be exported.