public enum ManagedAppDataStorageLocation extends java.lang.Enum<ManagedAppDataStorageLocation>
| Enum Constant and Description |
|---|
LOCAL_STORAGE
local Storage
|
ONE_DRIVE_FOR_BUSINESS
one Drive For Business
|
SHARE_POINT
share Point
|
UNEXPECTED_VALUE
For ManagedAppDataStorageLocation values that were not expected from the service
|
| Modifier and Type | Method and Description |
|---|---|
static ManagedAppDataStorageLocation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ManagedAppDataStorageLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ManagedAppDataStorageLocation ONE_DRIVE_FOR_BUSINESS
public static final ManagedAppDataStorageLocation SHARE_POINT
public static final ManagedAppDataStorageLocation LOCAL_STORAGE
public static final ManagedAppDataStorageLocation UNEXPECTED_VALUE
public static ManagedAppDataStorageLocation[] values()
for (ManagedAppDataStorageLocation c : ManagedAppDataStorageLocation.values()) System.out.println(c);
public static ManagedAppDataStorageLocation 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