public enum Registry extends Enum<Registry>
| Enum Constant and Description |
|---|
ALIYUN
阿里云 OSS
|
BAIDU
百度云 BOS
|
HUAWEI
华为云 OBS
|
JD
京东云 OBS
|
LOCAL
本地 file
|
MINIO
MINIO OSS
|
QINIU
七牛云 OSS
|
TENCENT
腾讯云 COS
|
UPYUN
又拍云 OSS
|
| Modifier and Type | Method and Description |
|---|---|
static Registry |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Registry[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Registry ALIYUN
public static final Registry BAIDU
public static final Registry HUAWEI
public static final Registry JD
public static final Registry MINIO
public static final Registry QINIU
public static final Registry TENCENT
public static final Registry UPYUN
public static final Registry LOCAL
public static Registry[] values()
for (Registry c : Registry.values()) System.out.println(c);
public static Registry valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.