Enum Class AttachmentMethod
- All Implemented Interfaces:
Serializable,Comparable<AttachmentMethod>,Constable
Specifies how the data of an attachment is stored or referenced.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe attachment is a reference (path) to data stored outside the message.The attachment is a reference only; the data cannot be resolved.The attachment is a reference that can be resolved to the data.The attachment data is stored by value in the message.The attachment is a reference to data accessible by a web URL.The attachment is an embedded message.The attachment has no data.The attachment method is not specified.The attachment is an embedded OLE object. -
Method Summary
Modifier and TypeMethodDescriptionstatic AttachmentMethodReturns the enum constant of this class with the specified name.static AttachmentMethod[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NO_ATTACHMENT
The attachment has no data. -
ATTACH_BY_VALUE
The attachment data is stored by value in the message. -
ATTACH_BY_REFERENCE
The attachment is a reference (path) to data stored outside the message. -
ATTACH_BY_REFERENCE_RESOLVE
The attachment is a reference that can be resolved to the data. -
ATTACH_BY_REFERENCE_ONLY
The attachment is a reference only; the data cannot be resolved. -
EMBEDDED_MESSAGE
The attachment is an embedded message. -
OLE
The attachment is an embedded OLE object. -
ATTACH_BY_WEB_REFERENCE
The attachment is a reference to data accessible by a web URL. -
NONE
The attachment method is not specified.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-