public static enum Options.EmailAttachmentHandlingValue extends java.lang.Enum<Options.EmailAttachmentHandlingValue>
| Enum Constant and Description |
|---|
EXPORT
The attachments to this email will be converted
|
EXPORTRECURSIVE
The attachments to this email will be converted; if any are emails, they will also have their attachments converted, and so on
|
EXTRACT
attachments will be extracted in their native form, stored alongside the Web View output files
|
NONE
Attachments will not be converted or extracted
|
| Modifier and Type | Field and Description |
|---|---|
long |
value |
| Modifier and Type | Method and Description |
|---|---|
static Options.EmailAttachmentHandlingValue |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Options.EmailAttachmentHandlingValue[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final Options.EmailAttachmentHandlingValue NONE
public static final Options.EmailAttachmentHandlingValue EXPORT
public static final Options.EmailAttachmentHandlingValue EXPORTRECURSIVE
public static final Options.EmailAttachmentHandlingValue EXTRACT
public static Options.EmailAttachmentHandlingValue[] values()
for (Options.EmailAttachmentHandlingValue c : Options.EmailAttachmentHandlingValue.values())
System.out.println(c);
public static Options.EmailAttachmentHandlingValue 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