public enum AttachmentFlags extends java.lang.Enum<AttachmentFlags>
| Enum Constant and Description |
|---|
INVISIBLE_IN_HTML
Indicates that this attachment is not available to HTML rendering applications and should be ignored in MIME processing.
|
INVISIBLE_IN_RTF
Indicates that this attachment is not available to applications rendering in Rich Text Format (RTF) and should be ignored by MAPI.
|
NONE
None.
|
| Modifier and Type | Method and Description |
|---|---|
static AttachmentFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AttachmentFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttachmentFlags INVISIBLE_IN_HTML
public static final AttachmentFlags INVISIBLE_IN_RTF
public static final AttachmentFlags NONE
public static AttachmentFlags[] values()
for (AttachmentFlags c : AttachmentFlags.values()) System.out.println(c);
public static AttachmentFlags 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