Package odata.msgraph.client.beta.enums
Enum DeviceManagementConfigurationWindowsSkus
- java.lang.Object
-
- java.lang.Enum<DeviceManagementConfigurationWindowsSkus>
-
- odata.msgraph.client.beta.enums.DeviceManagementConfigurationWindowsSkus
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<DeviceManagementConfigurationWindowsSkus>
public enum DeviceManagementConfigurationWindowsSkus extends Enum<DeviceManagementConfigurationWindowsSkus> 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 DeviceManagementConfigurationWindowsSkusvalueOf(String name)Returns the enum constant of this type with the specified name.static DeviceManagementConfigurationWindowsSkus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final DeviceManagementConfigurationWindowsSkus UNKNOWN
-
WINDOWS_HOME
public static final DeviceManagementConfigurationWindowsSkus WINDOWS_HOME
-
WINDOWS_PROFESSIONAL
public static final DeviceManagementConfigurationWindowsSkus WINDOWS_PROFESSIONAL
-
WINDOWS_ENTERPRISE
public static final DeviceManagementConfigurationWindowsSkus WINDOWS_ENTERPRISE
-
WINDOWS_EDUCATION
public static final DeviceManagementConfigurationWindowsSkus WINDOWS_EDUCATION
-
WINDOWS_MOBILE
public static final DeviceManagementConfigurationWindowsSkus WINDOWS_MOBILE
-
WINDOWS_MOBILE_ENTERPRISE
public static final DeviceManagementConfigurationWindowsSkus WINDOWS_MOBILE_ENTERPRISE
-
WINDOWS_TEAM_SURFACE
public static final DeviceManagementConfigurationWindowsSkus WINDOWS_TEAM_SURFACE
-
IOT
public static final DeviceManagementConfigurationWindowsSkus IOT
-
IOT_ENTERPRISE
public static final DeviceManagementConfigurationWindowsSkus IOT_ENTERPRISE
-
HOLO_LENS
public static final DeviceManagementConfigurationWindowsSkus HOLO_LENS
-
HOLO_LENS_ENTERPRISE
public static final DeviceManagementConfigurationWindowsSkus HOLO_LENS_ENTERPRISE
-
HOLOGRAPHIC_FOR_BUSINESS
public static final DeviceManagementConfigurationWindowsSkus HOLOGRAPHIC_FOR_BUSINESS
-
WINDOWS_MULTI_SESSION
public static final DeviceManagementConfigurationWindowsSkus WINDOWS_MULTI_SESSION
-
SURFACE_HUB
public static final DeviceManagementConfigurationWindowsSkus SURFACE_HUB
-
-
Method Detail
-
values
public static DeviceManagementConfigurationWindowsSkus[] 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 (DeviceManagementConfigurationWindowsSkus c : DeviceManagementConfigurationWindowsSkus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeviceManagementConfigurationWindowsSkus 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
-
-