public static enum Recipient.Type extends Enum<Recipient.Type>
Modifier and Type | Method and Description |
---|---|
static Recipient.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Recipient.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Recipient.Type TO
public static final Recipient.Type CC
public static final Recipient.Type BCC
public static Recipient.Type[] values()
for (Recipient.Type c : Recipient.Type.values()) System.out.println(c);
public static Recipient.Type 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 null