Enum Class SignMessageMimeType

java.lang.Object
java.lang.Enum<SignMessageMimeType>
se.idsec.signservice.integration.signmessage.SignMessageMimeType
All Implemented Interfaces:
Serializable, Comparable<SignMessageMimeType>, Constable

public enum SignMessageMimeType extends Enum<SignMessageMimeType>
Enum representing a MIME type for sign messages.
Author:
Martin Lindström (martin@idsec.se), Stefan Santesson (stefan@idsec.se)
  • Enum Constant Details

  • Method Details

    • values

      public static SignMessageMimeType[] 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 SignMessageMimeType 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
    • getMimeType

      public String getMimeType()
      Gets the textual representation of the MIME type.
      Returns:
      the textual representation of the enum value
    • fromMimeType

      public static SignMessageMimeType fromMimeType(String mimeType) throws IllegalArgumentException
      Given a MIME type's textual representation, the method returns its enum value.
      Parameters:
      mimeType - the MIME type
      Returns:
      the SignMessageMimeType
      Throws:
      IllegalArgumentException - if no matching enum constant is found