public enum ManagedDeviceOwnerType extends java.lang.Enum<ManagedDeviceOwnerType>
| Enum Constant and Description |
|---|
COMPANY
company
|
PERSONAL
personal
|
UNEXPECTED_VALUE
For ManagedDeviceOwnerType values that were not expected from the service
|
UNKNOWN
unknown
|
| Modifier and Type | Method and Description |
|---|---|
static ManagedDeviceOwnerType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ManagedDeviceOwnerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ManagedDeviceOwnerType UNKNOWN
public static final ManagedDeviceOwnerType COMPANY
public static final ManagedDeviceOwnerType PERSONAL
public static final ManagedDeviceOwnerType UNEXPECTED_VALUE
public static ManagedDeviceOwnerType[] values()
for (ManagedDeviceOwnerType c : ManagedDeviceOwnerType.values()) System.out.println(c);
public static ManagedDeviceOwnerType 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