public static enum MultipleAddresses.Type extends java.lang.Enum<MultipleAddresses.Type>
| Enum Constant and Description |
|---|
bcc |
cc |
noreply |
replyroom |
replyto |
to |
| Modifier and Type | Method and Description |
|---|---|
static MultipleAddresses.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MultipleAddresses.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultipleAddresses.Type bcc
public static final MultipleAddresses.Type cc
public static final MultipleAddresses.Type noreply
public static final MultipleAddresses.Type replyroom
public static final MultipleAddresses.Type replyto
public static final MultipleAddresses.Type to
public static MultipleAddresses.Type[] values()
for (MultipleAddresses.Type c : MultipleAddresses.Type.values()) System.out.println(c);
public static MultipleAddresses.Type 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