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