Package com.gimbal.android
Enum Class PrivacyManager.ConsentState
- All Implemented Interfaces:
Serializable
,Comparable<PrivacyManager.ConsentState>
,Constable
- Enclosing class:
PrivacyManager
Indicates the consent chosen by the user
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionConsent has been granted by the userConsent has been refused by the userConsent is unknown -- typically because the user has not yet been asked for consent -
Method Summary
Modifier and TypeMethodDescriptionstatic PrivacyManager.ConsentState
Returns the enum constant of this class with the specified name.static PrivacyManager.ConsentState[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONSENT_UNKNOWN
Consent is unknown -- typically because the user has not yet been asked for consent -
CONSENT_GRANTED
Consent has been granted by the user -
CONSENT_REFUSED
Consent has been refused by the user
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-