Uses of Class
javax.mail.Header
-
Packages that use Header Package Description com.sun.mail.imap An IMAP protocol provider for the Jakarta Mail API that provides access to an IMAP message store.com.sun.mail.pop3 A POP3 protocol provider for the Jakarta Mail API that provides access to a POP3 message store.javax.mail The Jakarta Mail API provides classes that model a mail system.javax.mail.internet Classes specific to Internet mail systems. -
-
Uses of Header in com.sun.mail.imap
Methods in com.sun.mail.imap that return types with arguments of type Header Modifier and Type Method Description Enumeration<Header>IMAPBodyPart. getAllHeaders()Enumeration<Header>IMAPMessage. getAllHeaders()Get all headers.Enumeration<Header>IMAPBodyPart. getMatchingHeaders(String[] names)Enumeration<Header>IMAPMessage. getMatchingHeaders(String[] names)Get matching headers.Enumeration<Header>IMAPBodyPart. getNonMatchingHeaders(String[] names)Enumeration<Header>IMAPMessage. getNonMatchingHeaders(String[] names)Get non-matching headers. -
Uses of Header in com.sun.mail.pop3
Methods in com.sun.mail.pop3 that return types with arguments of type Header Modifier and Type Method Description Enumeration<Header>POP3Message. getAllHeaders()Return all the headers from this Message as an enumeration of Header objects.Enumeration<Header>POP3Message. getMatchingHeaders(String[] names)Return matching headers from this Message as an Enumeration of Header objects.Enumeration<Header>POP3Message. getNonMatchingHeaders(String[] names)Return non-matching headers from this Message as an Enumeration of Header objects. -
Uses of Header in javax.mail
Methods in javax.mail that return types with arguments of type Header Modifier and Type Method Description Enumeration<Header>Part. getAllHeaders()Return all the headers from this part as an Enumeration of Header objects.Enumeration<Header>Part. getMatchingHeaders(String[] header_names)Return matching headers from this part as an Enumeration of Header objects.Enumeration<Header>Part. getNonMatchingHeaders(String[] header_names)Return non-matching headers from this envelope as an Enumeration of Header objects. -
Uses of Header in javax.mail.internet
Subclasses of Header in javax.mail.internet Modifier and Type Class Description protected static classInternetHeaders.InternetHeaderAn individual internet header.Methods in javax.mail.internet that return types with arguments of type Header Modifier and Type Method Description Enumeration<Header>InternetHeaders. getAllHeaders()Return all the headers as an Enumeration ofHeaderobjects.Enumeration<Header>MimeBodyPart. getAllHeaders()Return all the headers from this Message as an Enumeration of Header objects.Enumeration<Header>MimeMessage. getAllHeaders()Return all the headers from this Message as an enumeration of Header objects.Enumeration<Header>InternetHeaders. getMatchingHeaders(String[] names)Return all matchingHeaderobjects.Enumeration<Header>MimeBodyPart. getMatchingHeaders(String[] names)Return matching headers from this Message as an Enumeration of Header objects.Enumeration<Header>MimeMessage. getMatchingHeaders(String[] names)Return matching headers from this Message as an Enumeration of Header objects.Enumeration<Header>InternetHeaders. getNonMatchingHeaders(String[] names)Return all non-matchingHeaderobjects.Enumeration<Header>MimeBodyPart. getNonMatchingHeaders(String[] names)Return non-matching headers from this Message as an Enumeration of Header objects.Enumeration<Header>MimeMessage. getNonMatchingHeaders(String[] names)Return non-matching headers from this Message as an Enumeration of Header objects.
-