Interface ExportOperation.Result
- Enclosing interface:
- ExportOperation
public static interface ExportOperation.Result
Container providing access to the result of the export operation.
- Since:
- 5.1.42
-
Method Summary
Modifier and TypeMethodDescription@NotNull Collection<ExportInfo>
Get the detailed information on created elements.@NotNull Set<ExportInfoFileHandle>
Get the detailed information on created file handles.@NotNull Set<FileHandle>
Deprecated.since 5.2.1403.@NotNull Collection<ExportInfo>
Get the detailed information on deleted elements.@NotNull Set<ExportInfoFileHandle>
Get the detailed information on deleted file handles.@NotNull Set<FileHandle>
Deprecated.since 5.2.1403.@NotNull Collection<ExportInfo>
Get the detailed information on moved elements.@NotNull Collection<Pair<ExportInfoFileHandle,
ExportInfoFileHandle>> Get the detailed information on moved file handles.@NotNull Collection<ExportInfo>
Get the detailed information on updated elements.@NotNull Set<ExportInfoFileHandle>
Get the detailed information on updated file handles.@NotNull Set<FileHandle>
Deprecated.since 5.2.1403.
-
Method Details
-
getCreatedFiles
Deprecated.since 5.2.1403. UsegetCreatedFileHandles()
()} orgetCreatedElements()
()} instead.Get the detailed information on created files.- Returns:
- The created files.
- Since:
- 5.1.42
-
getUpdatedFiles
Deprecated.since 5.2.1403. UsegetUpdatedFileHandles()
()} orgetUpdatedElements()
()} instead.Get the detailed information on updated files.- Returns:
- The updated files.
- Since:
- 5.1.42
-
getDeletedFiles
Deprecated.since 5.2.1403. UsegetDeletedFileHandles()
orgetDeletedElements()
instead.Get the detailed information on deleted files.- Returns:
- The deleted files.
- Since:
- 5.1.42
-
getCreatedFileHandles
Get the detailed information on created file handles.- Returns:
- The created file handles.
- Since:
- 5.2.1403
-
getUpdatedFileHandles
Get the detailed information on updated file handles.- Returns:
- The updated file handles.
- Since:
- 5.2.1403
-
getDeletedFileHandles
Get the detailed information on deleted file handles.- Returns:
- The deleted file handles.
- Since:
- 5.2.1403
-
getMovedFileHandles
Get the detailed information on moved file handles. Each element of the returnedcollection
is apair
ofExportInfoFileHandles
. The key of apair
is always the handle of the file before the move operation (at its original location) and the value of the pair is always the handle of the file after the move operation (at its current location).- Returns:
- The moved file handles.
- Since:
- 5.2.1403
- See Also:
-
getCreatedElements
Get the detailed information on created elements.- Returns:
- The created elements.
- Since:
- 5.2.1403
-
getUpdatedElements
Get the detailed information on updated elements.- Returns:
- The updated elements.
- Since:
- 5.2.1403
-
getDeletedElements
Get the detailed information on deleted elements.- Returns:
- The deleted elements.
- Since:
- 5.2.1403
-
getMovedElements
Get the detailed information on moved elements.- Returns:
- The moved elements.
- Since:
- 5.2.1403
-