public static enum MessageBody.RecipientKind extends java.lang.Enum<MessageBody.RecipientKind>
| Enum Constant and Description | 
|---|
BlindCarbonCopy  | 
CarbonCopy  | 
Originator  | 
Primary  | 
Sender  | 
| Modifier and Type | Method and Description | 
|---|---|
static MessageBody.RecipientKind | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static MessageBody.RecipientKind[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final MessageBody.RecipientKind Originator
public static final MessageBody.RecipientKind Sender
public static final MessageBody.RecipientKind Primary
public static final MessageBody.RecipientKind CarbonCopy
public static final MessageBody.RecipientKind BlindCarbonCopy
public static MessageBody.RecipientKind[] values()
for (MessageBody.RecipientKind c : MessageBody.RecipientKind.values()) System.out.println(c);
public static MessageBody.RecipientKind 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 nullCopyright © 2021. All Rights Reserved.