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 Details

    • getCreatedFiles

      @NotNull @Deprecated @NotNull Set<FileHandle> getCreatedFiles()
      Deprecated.
      since 5.2.1403. Use getCreatedFileHandles() ()} or getCreatedElements() ()} instead.
      Get the detailed information on created files.
      Returns:
      The created files.
      Since:
      5.1.42
    • getUpdatedFiles

      @NotNull @Deprecated @NotNull Set<FileHandle> getUpdatedFiles()
      Deprecated.
      since 5.2.1403. Use getUpdatedFileHandles() ()} or getUpdatedElements() ()} instead.
      Get the detailed information on updated files.
      Returns:
      The updated files.
      Since:
      5.1.42
    • getDeletedFiles

      @NotNull @Deprecated @NotNull Set<FileHandle> getDeletedFiles()
      Deprecated.
      since 5.2.1403. Use getDeletedFileHandles() or getDeletedElements() instead.
      Get the detailed information on deleted files.
      Returns:
      The deleted files.
      Since:
      5.1.42
    • getCreatedFileHandles

      @NotNull @NotNull Set<ExportInfoFileHandle> getCreatedFileHandles()
      Get the detailed information on created file handles.
      Returns:
      The created file handles.
      Since:
      5.2.1403
    • getUpdatedFileHandles

      @NotNull @NotNull Set<ExportInfoFileHandle> getUpdatedFileHandles()
      Get the detailed information on updated file handles.
      Returns:
      The updated file handles.
      Since:
      5.2.1403
    • getDeletedFileHandles

      @NotNull @NotNull Set<ExportInfoFileHandle> getDeletedFileHandles()
      Get the detailed information on deleted file handles.
      Returns:
      The deleted file handles.
      Since:
      5.2.1403
    • getMovedFileHandles

      @NotNull @NotNull Collection<Pair<ExportInfoFileHandle,ExportInfoFileHandle>> getMovedFileHandles()
      Get the detailed information on moved file handles. Each element of the returned collection is apair of ExportInfoFileHandles. The key of a pair isalways 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

      @NotNull @NotNull Collection<ExportInfo> getCreatedElements()
      Get the detailed information on created elements.
      Returns:
      The created elements.
      Since:
      5.2.1403
    • getUpdatedElements

      @NotNull @NotNull Collection<ExportInfo> getUpdatedElements()
      Get the detailed information on updated elements.
      Returns:
      The updated elements.
      Since:
      5.2.1403
    • getDeletedElements

      @NotNull @NotNull Collection<ExportInfo> getDeletedElements()
      Get the detailed information on deleted elements.
      Returns:
      The deleted elements.
      Since:
      5.2.1403
    • getMovedElements

      @NotNull @NotNull Collection<ExportInfo> getMovedElements()
      Get the detailed information on moved elements.
      Returns:
      The moved elements.
      Since:
      5.2.1403