top.jfunc.common.ftp.another.DownloadStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of network Show documentation
Show all versions of network Show documentation
http客户端请求工具类,有多种实现:OKHttp3、ApacheHttpClient、HttpURLConnection,可以随意切换http实现
package top.jfunc.common.ftp.another;
public enum DownloadStatus {
/**
* 下载文件成功
*/
DownloadNewSuccess,
/**
*下载文件失败
*/
DownloadNewFailed,
/**
*本地文件大于远程文件
*/
LocalFileBiggerThanRemoteFile,
/**
*断点续传成功
*/
DownloadFromBreakSuccess,
/**
*远程文件不存在
*/
RemoteFileNotExist,
/**
*断点续传失败
*/
DownloadFromBreakFailed;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy