Module jakarta.mail

Class InternetHeaders.InternetHeader

  • Enclosing class:
    InternetHeaders

    protected static final class InternetHeaders.InternetHeader
    extends Header
    An individual internet header. This class is only used by subclasses of InternetHeaders.

    An InternetHeader object with a null value is used as a placeholder for headers of that name, to preserve the order of headers. A placeholder InternetHeader object with a name of ":" marks the location in the list of headers where new headers are added by default.

    • Constructor Summary

      Constructors 
      Constructor Description
      InternetHeader​(java.lang.String l)
      Constructor that takes a line and splits out the header name.
      InternetHeader​(java.lang.String n, java.lang.String v)
      Constructor that takes a header name and value.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getValue()
      Return the "value" part of the header line.
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • InternetHeader

        public InternetHeader​(java.lang.String l)
        Constructor that takes a line and splits out the header name.
        Parameters:
        l - the header line
      • InternetHeader

        public InternetHeader​(java.lang.String n,
                              java.lang.String v)
        Constructor that takes a header name and value.
        Parameters:
        n - the name of the header
        v - the value of the header
    • Method Detail

      • getValue

        public java.lang.String getValue()
        Return the "value" part of the header line.
        Overrides:
        getValue in class Header
        Returns:
        value of the header