Uses of Class
org.apache.james.mime4j.stream.NameValuePair
-
Packages that use NameValuePair Package Description org.apache.james.mime4j.dom org.apache.james.mime4j.field org.apache.james.mime4j.internal org.apache.james.mime4j.message org.apache.james.mime4j.stream -
-
Uses of NameValuePair in org.apache.james.mime4j.dom
Methods in org.apache.james.mime4j.dom that return types with arguments of type NameValuePair Modifier and Type Method Description List<NameValuePair>
Multipart. getContentTypeParameters()
Methods in org.apache.james.mime4j.dom with parameters of type NameValuePair Modifier and Type Method Description Message.Builder
Message.Builder. setContentType(String mimeType, NameValuePair... parameters)
-
Uses of NameValuePair in org.apache.james.mime4j.field
Methods in org.apache.james.mime4j.field with parameters of type NameValuePair Modifier and Type Method Description static ContentTypeField
Fields. contentType(String mimeType, NameValuePair... parameters)
Creates a Content-Type field from the specified MIME type and parameters.Method parameters in org.apache.james.mime4j.field with type arguments of type NameValuePair Modifier and Type Method Description static ContentDispositionField
Fields. contentDisposition(String dispositionType, Iterable<NameValuePair> parameters)
Creates a Content-Disposition field from the specified disposition type and parameters.static ContentTypeField
Fields. contentType(String mimeType, Iterable<NameValuePair> parameters)
Creates a Content-Type field from the specified MIME type and parameters. -
Uses of NameValuePair in org.apache.james.mime4j.internal
Methods in org.apache.james.mime4j.internal with parameters of type NameValuePair Modifier and Type Method Description AbstractEntityBuilder
AbstractEntityBuilder. setContentType(String mimeType, NameValuePair... parameters)
Sets transfer encoding of this message. -
Uses of NameValuePair in org.apache.james.mime4j.message
Methods in org.apache.james.mime4j.message that return types with arguments of type NameValuePair Modifier and Type Method Description List<NameValuePair>
AbstractMultipart. getContentTypeParameters()
Methods in org.apache.james.mime4j.message with parameters of type NameValuePair Modifier and Type Method Description MultipartBuilder
MultipartBuilder. addContentTypeParameter(NameValuePair parameter)
Multipart
DefaultMessageBuilder. newMultipart(String subType, NameValuePair... contentTypeParameters)
BodyPartBuilder
BodyPartBuilder. setContentType(String mimeType, NameValuePair... parameters)
MessageBuilder
MessageBuilder. setContentType(String mimeType, NameValuePair... parameters)
Deprecated.Constructor parameters in org.apache.james.mime4j.message with type arguments of type NameValuePair Constructor Description AbstractMultipart(String subType, List<NameValuePair> contentTypeParameters)
Creates a new emptyMultipart
instance.MultipartImpl(String subType, List<NameValuePair> parameters)
Creates a new emptyMultipart
instance. -
Uses of NameValuePair in org.apache.james.mime4j.stream
Methods in org.apache.james.mime4j.stream that return NameValuePair Modifier and Type Method Description NameValuePair
RawFieldParser. parseParameter(ByteSequence buf, ParserCursor cursor)
Parses the sequence of bytes containing a field parameter delimited with semicolon intoNameValuePair
.Methods in org.apache.james.mime4j.stream that return types with arguments of type NameValuePair Modifier and Type Method Description List<NameValuePair>
RawBody. getParams()
List<NameValuePair>
RawFieldParser. parseParameters(ByteSequence buf, ParserCursor cursor)
Parses the sequence of bytes containing field parameters delimited with semicolon into a list ofNameValuePair
s.
-