public enum ContactStatusEnum extends Enum<ContactStatusEnum>
| Enum Constant and Description |
|---|
NONQUALIFIED |
REACHABLE |
UNKNOWN |
UNREACHABLE |
| Modifier and Type | Method and Description |
|---|---|
static ContactStatusEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContactStatusEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContactStatusEnum REACHABLE
public static final ContactStatusEnum UNREACHABLE
public static final ContactStatusEnum NONQUALIFIED
public static final ContactStatusEnum UNKNOWN
public static ContactStatusEnum[] values()
for (ContactStatusEnum c : ContactStatusEnum.values()) System.out.println(c);
public static ContactStatusEnum 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 nullCopyright © 2004–2021. All rights reserved.