public enum ConsentChange extends Enum<ConsentChange>
| Enum Constant and Description |
|---|
APPROVE
Consent was granted.
|
PROLONG
Consent was prolonged.
|
REJECT
Consent was rejected.
|
| Modifier and Type | Method and Description |
|---|---|
static ConsentChange |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConsentChange[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConsentChange APPROVE
public static final ConsentChange PROLONG
public static final ConsentChange REJECT
public static ConsentChange[] values()
for (ConsentChange c : ConsentChange.values()) System.out.println(c);
public static ConsentChange 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 nullCopyright © 2016–2020 Wultra s.r.o.. All rights reserved.