All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vertx.ext.web.MIMEHeader Maven / Gradle / Ivy

There is a newer version: 5.0.0.CR1
Show newest version
package io.vertx.ext.web;

import io.vertx.codegen.annotations.VertxGen;

@VertxGen
public interface MIMEHeader extends ParsedHeaderValue{

  /**
   * Gets the parsed component part of the MIME. This is the string between the beginning and the first {@code '/'}
   * of the MIME
   * @return The component of the MIME this represents
   */
  String component();

  /**
   * Gets the parsed subcomponent part of the MIME. This is the string between the first {@code '/'} and the
   * {@code ';'} or the end of the MIME
   * @return The subcomponent of the MIME this represents
   */
  String subComponent();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy