public enum AddressSource extends Enum<AddressSource>
| Enum Constant and Description |
|---|
BCC |
CC |
From |
MailFrom |
RcptTo |
To |
Unknown |
| Modifier and Type | Method and Description |
|---|---|
static AddressSource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AddressSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AddressSource Unknown
public static final AddressSource RcptTo
public static final AddressSource MailFrom
public static final AddressSource To
public static final AddressSource CC
public static final AddressSource BCC
public static final AddressSource From
public static AddressSource[] values()
for (AddressSource c : AddressSource.values()) System.out.println(c);
public static AddressSource 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 © 2010-2016 NHIN Direct. All Rights Reserved.