public static enum EmailMultiPartBuilder.Part.MultiPartType extends Enum<EmailMultiPartBuilder.Part.MultiPartType>
Enum Constant and Description |
---|
alternative
Can be filtered out as spam; however avoids the issues with parallel with all Attachments being displayed.
|
digest |
parallel
Ideal for sending Only files/images separately.
|
related
Ideal if integrating content & images/files.
|
Modifier and Type | Method and Description |
---|---|
static EmailMultiPartBuilder.Part.MultiPartType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EmailMultiPartBuilder.Part.MultiPartType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmailMultiPartBuilder.Part.MultiPartType related
public static final EmailMultiPartBuilder.Part.MultiPartType parallel
public static final EmailMultiPartBuilder.Part.MultiPartType digest
public static final EmailMultiPartBuilder.Part.MultiPartType alternative
public static EmailMultiPartBuilder.Part.MultiPartType[] values()
for (EmailMultiPartBuilder.Part.MultiPartType c : EmailMultiPartBuilder.Part.MultiPartType.values()) System.out.println(c);
public static EmailMultiPartBuilder.Part.MultiPartType 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 © 2018. All rights reserved.