Enum ContentDispositionType

java.lang.Object
java.lang.Enum<ContentDispositionType>
com.globalmentor.net.mime.ContentDispositionType
All Implemented Interfaces:
Identifier, Token, Serializable, Comparable<ContentDispositionType>

public enum ContentDispositionType extends Enum<ContentDispositionType> implements Identifier
Represents a MIME content disposition type as defined in RFC 1806, "Communicating Presentation Information in Internet Messages: The Content-Disposition Header".
Author:
Garret Wilson, Garret Wilson
See Also:
  • Enum Constant Details

    • INLINE

      public static final ContentDispositionType INLINE
      Indicates a bodypart is intended to be displayed automatically upon display of the message.
    • ATTACHMENT

      public static final ContentDispositionType ATTACHMENT
      Indicates a bodypart is separate from the main body of the mail message.
  • Method Details

    • values

      public static ContentDispositionType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static ContentDispositionType valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null