public enum RemoteStorageType extends Enum<RemoteStorageType>
| Enum Constant and Description |
|---|
NotSpecified
Use standard storage
|
Premium
Use premium storage
|
Standard
Use standard storage
|
| Modifier and Type | Method and Description |
|---|---|
static RemoteStorageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RemoteStorageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemoteStorageType NotSpecified
public static final RemoteStorageType Standard
public static final RemoteStorageType Premium
public static RemoteStorageType[] values()
for (RemoteStorageType c : RemoteStorageType.values()) System.out.println(c);
public static RemoteStorageType 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 © 2021. All rights reserved.