public enum Basis extends Enum<Basis>
| Enum Constant and Description |
|---|
CONSENT |
CONTRACT |
LEGAL_OBLIGATION |
LEGITIMATE_INTERESTS |
PUBLIC_TASK |
VITAL_INTERESTS |
| Modifier and Type | Method and Description |
|---|---|
static Basis |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Basis[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Basis CONSENT
public static final Basis CONTRACT
public static final Basis LEGAL_OBLIGATION
public static final Basis VITAL_INTERESTS
public static final Basis PUBLIC_TASK
public static final Basis LEGITIMATE_INTERESTS
public static Basis[] values()
for (Basis c : Basis.values()) System.out.println(c);
public static Basis 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