Package com.intentsoftware.addapptr
Enum ManagedConsent.ManagedConsentState
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum ManagedConsent.ManagedConsentState extends Enum<ManagedConsent.ManagedConsentState>
Possible states of consent given by the user.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<ManagedConsent.ManagedConsentState>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description UNKNOWNNo information about consent state.
WITHHELDConsent has been declined by the user.
CUSTOMPartial consent has been granted by the user - at least some purposes and some vendors were given consent.
OBTAINEDFull consent has been granted by the user.
-
Method Summary
Modifier and Type Method Description final ManagedConsent.ManagedConsentStatevalueOf(String value)Returns the enum constant of this type with the specified name. final Array<ManagedConsent.ManagedConsentState>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<ManagedConsent.ManagedConsentState>getEntries()Possible states of consent given by the user. -
-
Method Detail
-
valueOf
final ManagedConsent.ManagedConsentState valueOf(String value)
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.)
-
values
final Array<ManagedConsent.ManagedConsentState> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<ManagedConsent.ManagedConsentState> getEntries()
Possible states of consent given by the user.
-
-
-
-