Package odata.msgraph.client.beta.enums
Enum WindowsPrivacyDataCategory
- java.lang.Object
-
- java.lang.Enum<WindowsPrivacyDataCategory>
-
- odata.msgraph.client.beta.enums.WindowsPrivacyDataCategory
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<WindowsPrivacyDataCategory>
public enum WindowsPrivacyDataCategory extends Enum<WindowsPrivacyDataCategory> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCOUNT_INFOAPPS_RUN_IN_BACKGROUNDCALENDARCALL_HISTORYCAMERACONTACTSDIAGNOSTICS_INFOEMAILLOCATIONMESSAGINGMICROPHONEMOTIONNOT_CONFIGUREDNOTIFICATIONSPHONERADIOSSYNC_WITH_DEVICESTASKSTRUSTED_DEVICES
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static WindowsPrivacyDataCategoryvalueOf(String name)Returns the enum constant of this type with the specified name.static WindowsPrivacyDataCategory[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_CONFIGURED
public static final WindowsPrivacyDataCategory NOT_CONFIGURED
-
ACCOUNT_INFO
public static final WindowsPrivacyDataCategory ACCOUNT_INFO
-
APPS_RUN_IN_BACKGROUND
public static final WindowsPrivacyDataCategory APPS_RUN_IN_BACKGROUND
-
CALENDAR
public static final WindowsPrivacyDataCategory CALENDAR
-
CALL_HISTORY
public static final WindowsPrivacyDataCategory CALL_HISTORY
-
CAMERA
public static final WindowsPrivacyDataCategory CAMERA
-
CONTACTS
public static final WindowsPrivacyDataCategory CONTACTS
-
DIAGNOSTICS_INFO
public static final WindowsPrivacyDataCategory DIAGNOSTICS_INFO
-
EMAIL
public static final WindowsPrivacyDataCategory EMAIL
-
LOCATION
public static final WindowsPrivacyDataCategory LOCATION
-
MESSAGING
public static final WindowsPrivacyDataCategory MESSAGING
-
MICROPHONE
public static final WindowsPrivacyDataCategory MICROPHONE
-
MOTION
public static final WindowsPrivacyDataCategory MOTION
-
NOTIFICATIONS
public static final WindowsPrivacyDataCategory NOTIFICATIONS
-
PHONE
public static final WindowsPrivacyDataCategory PHONE
-
RADIOS
public static final WindowsPrivacyDataCategory RADIOS
-
TASKS
public static final WindowsPrivacyDataCategory TASKS
-
SYNC_WITH_DEVICES
public static final WindowsPrivacyDataCategory SYNC_WITH_DEVICES
-
TRUSTED_DEVICES
public static final WindowsPrivacyDataCategory TRUSTED_DEVICES
-
-
Method Detail
-
values
public static WindowsPrivacyDataCategory[] 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 (WindowsPrivacyDataCategory c : WindowsPrivacyDataCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WindowsPrivacyDataCategory 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
-
-