Enum Class ContentType

java.lang.Object
java.lang.Enum<ContentType>
ch.nevis.mobile.sdk.api.operation.outofband.ContentType
All Implemented Interfaces:
Serializable, Comparable<ContentType>, Constable

public enum ContentType extends Enum<ContentType>
The content type of the OutOfBandPayload.
  • Enum Constant Details

    • JOSE

      @SerializedName("application/jose") public static final ContentType JOSE
      JOSE content type. This is used when the data inside the OutOfBandPayload is encrypted.
    • JSON

      @SerializedName("application/json") public static final ContentType JSON
      JSON content type. This is used when the data inside the OutOfBandPayload is non encrypted.
  • Method Details

    • values

      public static ContentType[] 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 ContentType 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
    • toMimeType

      public String toMimeType()
      The MIME type associated with this content type.
      Returns:
      the MIME type associated with this content type
    • toString

      public String toString()
      Overrides:
      toString in class Enum<ContentType>