public static enum Privacy.VisitorMode extends java.lang.Enum<Privacy.VisitorMode>
| Enum Constant and Description |
|---|
Exempt |
NoConsent |
None |
OptIn |
OptOut |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
stringValue() |
static Privacy.VisitorMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Privacy.VisitorMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Privacy.VisitorMode OptOut
public static final Privacy.VisitorMode OptIn
public static final Privacy.VisitorMode NoConsent
public static final Privacy.VisitorMode Exempt
public static final Privacy.VisitorMode None
public static Privacy.VisitorMode[] values()
for (Privacy.VisitorMode c : Privacy.VisitorMode.values()) System.out.println(c);
public static Privacy.VisitorMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String stringValue()