Package odata.msgraph.client.beta.enums
Enum DeviceType
- java.lang.Object
-
- java.lang.Enum<DeviceType>
-
- odata.msgraph.client.beta.enums.DeviceType
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<DeviceType>
public enum DeviceType extends Enum<DeviceType> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANDROIDANDROID_ENTERPRISEANDROID_FOR_WORKANDROIDN_GMSBLACKBERRYCHROME_OSCLOUD_PCDESKTOPHOLO_LENSI_PADI_PHONEI_PODI_SOC_CONSUMERLINUXMACMAC_MDMNOKIAPALMSURFACE_HUBUNIXUNKNOWNWIN_CEWIN_EMBEDDEDWIN_MO6WINDOWS_PHONEWINDOWS_RTWINDOWS10X
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static DeviceTypevalueOf(String name)Returns the enum constant of this type with the specified name.static DeviceType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DESKTOP
public static final DeviceType DESKTOP
-
WINDOWS_RT
public static final DeviceType WINDOWS_RT
-
WIN_MO6
public static final DeviceType WIN_MO6
-
NOKIA
public static final DeviceType NOKIA
-
WINDOWS_PHONE
public static final DeviceType WINDOWS_PHONE
-
MAC
public static final DeviceType MAC
-
WIN_CE
public static final DeviceType WIN_CE
-
WIN_EMBEDDED
public static final DeviceType WIN_EMBEDDED
-
I_PHONE
public static final DeviceType I_PHONE
-
I_PAD
public static final DeviceType I_PAD
-
I_POD
public static final DeviceType I_POD
-
ANDROID
public static final DeviceType ANDROID
-
I_SOC_CONSUMER
public static final DeviceType I_SOC_CONSUMER
-
UNIX
public static final DeviceType UNIX
-
MAC_MDM
public static final DeviceType MAC_MDM
-
HOLO_LENS
public static final DeviceType HOLO_LENS
-
SURFACE_HUB
public static final DeviceType SURFACE_HUB
-
ANDROID_FOR_WORK
public static final DeviceType ANDROID_FOR_WORK
-
ANDROID_ENTERPRISE
public static final DeviceType ANDROID_ENTERPRISE
-
WINDOWS10X
public static final DeviceType WINDOWS10X
-
ANDROIDN_GMS
public static final DeviceType ANDROIDN_GMS
-
CHROME_OS
public static final DeviceType CHROME_OS
-
LINUX
public static final DeviceType LINUX
-
BLACKBERRY
public static final DeviceType BLACKBERRY
-
PALM
public static final DeviceType PALM
-
UNKNOWN
public static final DeviceType UNKNOWN
-
CLOUD_PC
public static final DeviceType CLOUD_PC
-
-
Method Detail
-
values
public static DeviceType[] 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 (DeviceType c : DeviceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeviceType 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
-
-