public static enum Apptimize.UnenrollmentReason extends java.lang.Enum<Apptimize.UnenrollmentReason>
Enum Constant and Description |
---|
CUSTOMER_USER_ID_CHANGED
The user ID has been changed by calling the setCustomerUserId method.
|
EXPERIMENT_STOPPED
The experiment has been stopped in the dashboard.
|
EXPERIMENT_WINNER_SELECTED
The experiment has been stopped and a winner selected in the dashboard.
|
OTHER
The user is no longer enrolled in the experiment for some other reason, such
as a change in the device or custom properties.
|
REASON_UNKNOWN
The reason for unenrollment could not be determined.
|
VARIANT_CHANGED
The variant that the user has been enrolled in has changed, therefore the user
has been unenrolled from the old variant.
|
Modifier and Type | Method and Description |
---|---|
static Apptimize.UnenrollmentReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Apptimize.UnenrollmentReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Apptimize.UnenrollmentReason EXPERIMENT_STOPPED
public static final Apptimize.UnenrollmentReason EXPERIMENT_WINNER_SELECTED
public static final Apptimize.UnenrollmentReason VARIANT_CHANGED
public static final Apptimize.UnenrollmentReason CUSTOMER_USER_ID_CHANGED
public static final Apptimize.UnenrollmentReason OTHER
public static final Apptimize.UnenrollmentReason REASON_UNKNOWN
public static Apptimize.UnenrollmentReason[] values()
for (Apptimize.UnenrollmentReason c : Apptimize.UnenrollmentReason.values()) System.out.println(c);
public static Apptimize.UnenrollmentReason 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 null