public enum DeliveryErrorType extends Enum<DeliveryErrorType>
| Enum Constant and Description |
|---|
INVALID_OSS_BUCKET |
OK |
UNAUTHORIZED |
| Modifier and Type | Method and Description |
|---|---|
static DeliveryErrorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeliveryErrorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeliveryErrorType OK
public static final DeliveryErrorType UNAUTHORIZED
public static final DeliveryErrorType INVALID_OSS_BUCKET
public static DeliveryErrorType[] values()
for (DeliveryErrorType c : DeliveryErrorType.values()) System.out.println(c);
public static DeliveryErrorType 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 © 2024. All Rights Reserved.