Package odata.msgraph.client.beta.enums
Enum DeviceManagementTemplateSubtype
- java.lang.Object
-
- java.lang.Enum<DeviceManagementTemplateSubtype>
-
- odata.msgraph.client.beta.enums.DeviceManagementTemplateSubtype
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<DeviceManagementTemplateSubtype>
public enum DeviceManagementTemplateSubtype extends Enum<DeviceManagementTemplateSubtype> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCOUNT_PROTECTIONANTIVIRUSATTACK_SURFACE_REDUCTIONDISK_ENCRYPTIONENDPOINT_DETECTION_REPONSEFIREWALLFIREWALL_SHARED_APP_LISTFIREWALL_SHARED_IP_LISTFIREWALL_SHARED_PORTLISTNONE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static DeviceManagementTemplateSubtypevalueOf(String name)Returns the enum constant of this type with the specified name.static DeviceManagementTemplateSubtype[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final DeviceManagementTemplateSubtype NONE
-
FIREWALL
public static final DeviceManagementTemplateSubtype FIREWALL
-
DISK_ENCRYPTION
public static final DeviceManagementTemplateSubtype DISK_ENCRYPTION
-
ATTACK_SURFACE_REDUCTION
public static final DeviceManagementTemplateSubtype ATTACK_SURFACE_REDUCTION
-
ENDPOINT_DETECTION_REPONSE
public static final DeviceManagementTemplateSubtype ENDPOINT_DETECTION_REPONSE
-
ACCOUNT_PROTECTION
public static final DeviceManagementTemplateSubtype ACCOUNT_PROTECTION
-
ANTIVIRUS
public static final DeviceManagementTemplateSubtype ANTIVIRUS
-
FIREWALL_SHARED_APP_LIST
public static final DeviceManagementTemplateSubtype FIREWALL_SHARED_APP_LIST
-
FIREWALL_SHARED_IP_LIST
public static final DeviceManagementTemplateSubtype FIREWALL_SHARED_IP_LIST
-
FIREWALL_SHARED_PORTLIST
public static final DeviceManagementTemplateSubtype FIREWALL_SHARED_PORTLIST
-
-
Method Detail
-
values
public static DeviceManagementTemplateSubtype[] 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 (DeviceManagementTemplateSubtype c : DeviceManagementTemplateSubtype.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeviceManagementTemplateSubtype 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
-
-