- java.lang.Object
-
- jakarta.mail.Header
-
- Direct Known Subclasses:
InternetHeaders.InternetHeader
public class Header extends java.lang.Object
The Header class stores a name/value pair to represent headers.- Author:
- John Mani
-
-
Constructor Summary
Constructors Constructor Description Header(java.lang.String name, java.lang.String value)
Construct a Header object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.String
getName()
Returns the name of this header.java.lang.String
getValue()
Returns the value of this header.int
hashCode()
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Returns the name of this header.- Returns:
- name of the header
-
getValue
public java.lang.String getValue()
Returns the value of this header.- Returns:
- value of the header
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
-