public enum Reason extends Enum<Reason>
| Enum Constant and Description |
|---|
CHARGEBACK
Chargeback received for this user.
|
DUPLICATE_ACCOUNT
This user account is a duplicate of another account.
|
FAKE
The user is listing non-existent or fraudulent products or services for sale.
|
FUNNELING
The user engaged in coordinated buying and selling in an effort to funnel money.
|
REFERRAL
The user engaged in various kinds of referral abuse
|
SPAM
The user is spending spam.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getSiftScienceValue() |
static Reason |
resolve(String siftScienceValue) |
static Reason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Reason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Reason CHARGEBACK
public static final Reason SPAM
public static final Reason FUNNELING
public static final Reason FAKE
public static final Reason REFERRAL
public static final Reason DUPLICATE_ACCOUNT
public static Reason[] values()
for (Reason c : Reason.values()) System.out.println(c);
public static Reason 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 nullpublic String getSiftScienceValue()
Copyright © 2014. All rights reserved.