public enum ContactStatus extends java.lang.Enum<ContactStatus>
Enum Constant and Description |
---|
ACTIVE |
ALL |
NON_SUBSCRIBER |
OPTOUT |
REMOVED |
UNCONFIRMED |
VISITOR |
Modifier and Type | Method and Description |
---|---|
static ContactStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ContactStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContactStatus ALL
public static final ContactStatus ACTIVE
public static final ContactStatus UNCONFIRMED
public static final ContactStatus OPTOUT
public static final ContactStatus REMOVED
public static final ContactStatus NON_SUBSCRIBER
public static final ContactStatus VISITOR
public static ContactStatus[] values()
for (ContactStatus c : ContactStatus.values()) System.out.println(c);
public static ContactStatus 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