public enum ResourceCreateFailReason extends java.lang.Enum<ResourceCreateFailReason>
Enum Constant and Description |
---|
ResourceExists
Resource already exists and overwrite not enabled
|
StorageFailure
Unable to store resource on underlying medium
|
Modifier and Type | Method and Description |
---|---|
static ResourceCreateFailReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ResourceCreateFailReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourceCreateFailReason ResourceExists
public static final ResourceCreateFailReason StorageFailure
public static ResourceCreateFailReason[] values()
for (ResourceCreateFailReason c : ResourceCreateFailReason.values()) System.out.println(c);
public static ResourceCreateFailReason valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null