Package odata.msgraph.client.beta.enums
Enum ManagementAgentType
- java.lang.Object
-
- java.lang.Enum<ManagementAgentType>
-
- odata.msgraph.client.beta.enums.ManagementAgentType
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<ManagementAgentType>
public enum ManagementAgentType extends Enum<ManagementAgentType> 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 ManagementAgentTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ManagementAgentType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EAS
public static final ManagementAgentType EAS
-
MDM
public static final ManagementAgentType MDM
-
EAS_MDM
public static final ManagementAgentType EAS_MDM
-
INTUNE_CLIENT
public static final ManagementAgentType INTUNE_CLIENT
-
EAS_INTUNE_CLIENT
public static final ManagementAgentType EAS_INTUNE_CLIENT
-
CONFIGURATION_MANAGER_CLIENT
public static final ManagementAgentType CONFIGURATION_MANAGER_CLIENT
-
CONFIGURATION_MANAGER_CLIENT_MDM
public static final ManagementAgentType CONFIGURATION_MANAGER_CLIENT_MDM
-
CONFIGURATION_MANAGER_CLIENT_MDM_EAS
public static final ManagementAgentType CONFIGURATION_MANAGER_CLIENT_MDM_EAS
-
UNKNOWN
public static final ManagementAgentType UNKNOWN
-
JAMF
public static final ManagementAgentType JAMF
-
GOOGLE_CLOUD_DEVICE_POLICY_CONTROLLER
public static final ManagementAgentType GOOGLE_CLOUD_DEVICE_POLICY_CONTROLLER
-
MICROSOFT365MANAGED_MDM
public static final ManagementAgentType MICROSOFT365MANAGED_MDM
-
MS_SENSE
public static final ManagementAgentType MS_SENSE
-
INTUNE_AOSP
public static final ManagementAgentType INTUNE_AOSP
-
-
Method Detail
-
values
public static ManagementAgentType[] 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 (ManagementAgentType c : ManagementAgentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ManagementAgentType 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
-
-