isDownloadOnlyMode what is the purpose of this variable in FormDownloadListViewModel?

FormDownloadListViewModel contains variable isDownloadOnlyMode and based on this I saw the below method in FormDownloadListActivity

 if (viewModel.isDownloadOnlyMode) {
                performDownloadModeDownload()
  }

Can anyone explain me about this variable and the method performDownloadModeDownload?