public enum NonIABConsent extends Enum<NonIABConsent>
| Enum Constant and Description |
|---|
OBTAINED
Consent has been granted by the user.
|
UNKNOWN
Unknown - if the user has never set a consent state.
|
WITHHELD
Consent has been declined by the user.
|
| Modifier and Type | Method and Description |
|---|---|
static NonIABConsent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NonIABConsent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NonIABConsent UNKNOWN
public static final NonIABConsent OBTAINED
public static final NonIABConsent WITHHELD
public static NonIABConsent[] values()
for (NonIABConsent c : NonIABConsent.values()) System.out.println(c);
public static NonIABConsent valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null