Enum ContentType

    • Enum Constant Detail

      • APPLICATION_JSON

        public static final ContentType APPLICATION_JSON
      • APPLICATION_XML_VALUE

        public static final ContentType APPLICATION_XML_VALUE
      • APPLICATION_FORM_URLENCODED_VALUE

        public static final ContentType APPLICATION_FORM_URLENCODED_VALUE
      • APPLICATION_PDF_VALUE

        public static final ContentType APPLICATION_PDF_VALUE
      • MULTIPART_MIXED_VALUE

        public static final ContentType MULTIPART_MIXED_VALUE
      • MULTIPART_FORM_DATA_VALUE

        public static final ContentType MULTIPART_FORM_DATA_VALUE
      • TEXT_PLAIN_VALUE

        public static final ContentType TEXT_PLAIN_VALUE
      • IMAGE_PNG_VALUE

        public static final ContentType IMAGE_PNG_VALUE
      • IMAGE_JPEG_VALUE

        public static final ContentType IMAGE_JPEG_VALUE
      • IMAGE_GIF_VALUE

        public static final ContentType IMAGE_GIF_VALUE
    • Method Detail

      • values

        public static ContentType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ContentType c : ContentType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ContentType 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
      • value

        public String value()
      • toContentType

        public static ContentType toContentType​(String value)
        Parameters:
        value - content type str eg: application/json
        Returns:
        ContentType