Package odata.msgraph.client.beta.enums
Enum DeviceManagementTemplateType
- java.lang.Object
-
- java.lang.Enum<DeviceManagementTemplateType>
-
- odata.msgraph.client.beta.enums.DeviceManagementTemplateType
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<DeviceManagementTemplateType>
public enum DeviceManagementTemplateType extends Enum<DeviceManagementTemplateType> 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 DeviceManagementTemplateTypevalueOf(String name)Returns the enum constant of this type with the specified name.static DeviceManagementTemplateType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SECURITY_BASELINE
public static final DeviceManagementTemplateType SECURITY_BASELINE
-
SPECIALIZED_DEVICES
public static final DeviceManagementTemplateType SPECIALIZED_DEVICES
-
ADVANCED_THREAT_PROTECTION_SECURITY_BASELINE
public static final DeviceManagementTemplateType ADVANCED_THREAT_PROTECTION_SECURITY_BASELINE
-
DEVICE_CONFIGURATION
public static final DeviceManagementTemplateType DEVICE_CONFIGURATION
-
CUSTOM
public static final DeviceManagementTemplateType CUSTOM
-
SECURITY_TEMPLATE
public static final DeviceManagementTemplateType SECURITY_TEMPLATE
-
MICROSOFT_EDGE_SECURITY_BASELINE
public static final DeviceManagementTemplateType MICROSOFT_EDGE_SECURITY_BASELINE
-
MICROSOFT_OFFICE365PRO_PLUS_SECURITY_BASELINE
public static final DeviceManagementTemplateType MICROSOFT_OFFICE365PRO_PLUS_SECURITY_BASELINE
-
DEVICE_COMPLIANCE
public static final DeviceManagementTemplateType DEVICE_COMPLIANCE
-
DEVICE_CONFIGURATION_FOR_OFFICE365
public static final DeviceManagementTemplateType DEVICE_CONFIGURATION_FOR_OFFICE365
-
CLOUD_PC
public static final DeviceManagementTemplateType CLOUD_PC
-
FIREWALL_SHARED_SETTINGS
public static final DeviceManagementTemplateType FIREWALL_SHARED_SETTINGS
-
-
Method Detail
-
values
public static DeviceManagementTemplateType[] 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 (DeviceManagementTemplateType c : DeviceManagementTemplateType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeviceManagementTemplateType 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
-
-