Enum Class AttachmentMethod

java.lang.Object
java.lang.Enum<AttachmentMethod>
com.independentsoft.msg.AttachmentMethod
All Implemented Interfaces:
Serializable, Comparable<AttachmentMethod>, Constable

public enum AttachmentMethod extends Enum<AttachmentMethod>
Represents the way the contents of an attachment can be accessed.
  • Enum Constant Details

    • NO_ATTACHMENT

      public static final AttachmentMethod NO_ATTACHMENT
      The attachment has just been created.
    • ATTACH_BY_VALUE

      public static final AttachmentMethod ATTACH_BY_VALUE
      The Attachment.getDataObject() contains the attachment data.
    • ATTACH_BY_REFERENCE

      public static final AttachmentMethod ATTACH_BY_REFERENCE
      The Attachment.getPathName() or the Attachment.getLongPathName() contains a fully-qualified path identifying the attachment to recipients with access to a common file server.
    • ATTACH_BY_REFERENCE_RESOLVE

      public static final AttachmentMethod ATTACH_BY_REFERENCE_RESOLVE
      The Attachment.getPathName() or the Attachment.getLongPathName() contains a fully-qualified path identifying the attachment.
    • ATTACH_BY_REFERENCE_ONLY

      public static final AttachmentMethod ATTACH_BY_REFERENCE_ONLY
      The Attachment.getPathName() or the Attachment.getLongPathName() contains a fully-qualified path identifying the attachment.
    • EMBEDDED_MESSAGE

      public static final AttachmentMethod EMBEDDED_MESSAGE
      The Attachment.getDataObject() contains an embedded Message object.
    • OLE

      public static final AttachmentMethod OLE
      The attachment is an embedded OLE object.
    • ATTACH_BY_WEB_REFERENCE

      public static final AttachmentMethod ATTACH_BY_WEB_REFERENCE
    • NONE

      public static final AttachmentMethod NONE
      None
  • Method Details

    • values

      public static AttachmentMethod[] 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

      public static AttachmentMethod valueOf(String name)
      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 name
      NullPointerException - if the argument is null