Package odata.msgraph.client.beta.enums
Enum DeviceEnrollmentType
- java.lang.Object
-
- java.lang.Enum<DeviceEnrollmentType>
-
- odata.msgraph.client.beta.enums.DeviceEnrollmentType
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<DeviceEnrollmentType>
public enum DeviceEnrollmentType extends Enum<DeviceEnrollmentType> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static DeviceEnrollmentTypevalueOf(String name)Returns the enum constant of this type with the specified name.static DeviceEnrollmentType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final DeviceEnrollmentType UNKNOWN
-
USER_ENROLLMENT
public static final DeviceEnrollmentType USER_ENROLLMENT
-
DEVICE_ENROLLMENT_MANAGER
public static final DeviceEnrollmentType DEVICE_ENROLLMENT_MANAGER
-
APPLE_BULK_WITH_USER
public static final DeviceEnrollmentType APPLE_BULK_WITH_USER
-
APPLE_BULK_WITHOUT_USER
public static final DeviceEnrollmentType APPLE_BULK_WITHOUT_USER
-
WINDOWS_AZURE_ADJOIN
public static final DeviceEnrollmentType WINDOWS_AZURE_ADJOIN
-
WINDOWS_BULK_USERLESS
public static final DeviceEnrollmentType WINDOWS_BULK_USERLESS
-
WINDOWS_AUTO_ENROLLMENT
public static final DeviceEnrollmentType WINDOWS_AUTO_ENROLLMENT
-
WINDOWS_BULK_AZURE_DOMAIN_JOIN
public static final DeviceEnrollmentType WINDOWS_BULK_AZURE_DOMAIN_JOIN
-
WINDOWS_CO_MANAGEMENT
public static final DeviceEnrollmentType WINDOWS_CO_MANAGEMENT
-
WINDOWS_AZURE_ADJOIN_USING_DEVICE_AUTH
public static final DeviceEnrollmentType WINDOWS_AZURE_ADJOIN_USING_DEVICE_AUTH
-
APPLE_USER_ENROLLMENT
public static final DeviceEnrollmentType APPLE_USER_ENROLLMENT
-
APPLE_USER_ENROLLMENT_WITH_SERVICE_ACCOUNT
public static final DeviceEnrollmentType APPLE_USER_ENROLLMENT_WITH_SERVICE_ACCOUNT
-
AZURE_AD_JOIN_USING_AZURE_VM_EXTENSION
public static final DeviceEnrollmentType AZURE_AD_JOIN_USING_AZURE_VM_EXTENSION
-
ANDROID_ENTERPRISE_DEDICATED_DEVICE
public static final DeviceEnrollmentType ANDROID_ENTERPRISE_DEDICATED_DEVICE
-
ANDROID_ENTERPRISE_FULLY_MANAGED
public static final DeviceEnrollmentType ANDROID_ENTERPRISE_FULLY_MANAGED
-
ANDROID_ENTERPRISE_CORPORATE_WORK_PROFILE
public static final DeviceEnrollmentType ANDROID_ENTERPRISE_CORPORATE_WORK_PROFILE
-
-
Method Detail
-
values
public static DeviceEnrollmentType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DeviceEnrollmentType c : DeviceEnrollmentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeviceEnrollmentType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
enumName
public String enumName()
- Specified by:
enumNamein interfacecom.github.davidmoten.odata.client.Enum
-
enumValue
public String enumValue()
- Specified by:
enumValuein interfacecom.github.davidmoten.odata.client.Enum
-
-