public static enum Download.Status extends Enum<Download.Status>
| 枚举常量和说明 |
|---|
CANCELED
已取消
|
DONE
成功下载完成
|
DOWNLOADING
下载中
|
ERROR
发送错误
|
PAUSED
已暂停
|
public static final Download.Status CANCELED
public static final Download.Status DOWNLOADING
public static final Download.Status PAUSED
public static final Download.Status DONE
public static final Download.Status ERROR
public static Download.Status[] values()
for (Download.Status c : Download.Status.values()) System.out.println(c);
public static Download.Status valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public int value()
Copyright © 2025 zhouxu. All rights reserved.