public static enum OutlookMessageRecipient.Type extends Enum<OutlookMessageRecipient.Type>
| Enum Constant and Description |
|---|
BCC
The recipient that will receive a carbon copy.
|
CC
The recipient that will receive a copy.
|
TO
The main recipient.
|
| Modifier and Type | Method and Description |
|---|---|
static OutlookMessageRecipient.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutlookMessageRecipient.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutlookMessageRecipient.Type TO
public static final OutlookMessageRecipient.Type CC
public static final OutlookMessageRecipient.Type BCC
public static OutlookMessageRecipient.Type[] values()
for (OutlookMessageRecipient.Type c : OutlookMessageRecipient.Type.values()) System.out.println(c);
public static OutlookMessageRecipient.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 nullCopyright © 2017. All rights reserved.