Record Class AsciiDocModel.Heading

java.lang.Object
java.lang.Record
pro.verron.officestamper.asciidoc.AsciiDocModel.Heading
Record Components:
level - heading level
inlines - inline fragments
All Implemented Interfaces:
AsciiDocModel.Block
Enclosing class:
AsciiDocModel

public static record AsciiDocModel.Heading(List<String> header, int level, List<AsciiDocModel.Inline> inlines) extends Record implements AsciiDocModel.Block
Heading block (levels 1..6).
  • Constructor Details

    • Heading

      public Heading(int level, List<AsciiDocModel.Inline> inlines)
      Constructs a Heading object with the specified heading level and inline fragments.
      Parameters:
      level - the heading level, must be between 1 and 6 (inclusive)
      inlines - the list of inline fragments representing the content of the heading
      Throws:
      IllegalArgumentException - if the heading level is outside the range of 1 to 6
    • Heading

      public Heading(List<String> header, int level, List<AsciiDocModel.Inline> inlines)
      Constructor.
      Parameters:
      level - heading level
      inlines - inline fragments
  • Method Details

    • size

      public int size()
      Specified by:
      size in interface AsciiDocModel.Block
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with the compare method from their corresponding wrapper classes.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • header

      public List<String> header()
      Returns the value of the header record component.
      Returns:
      the value of the header record component
    • level

      public int level()
      Returns the value of the level record component.
      Returns:
      the value of the level record component
    • inlines

      public List<AsciiDocModel.Inline> inlines()
      Returns the value of the inlines record component.
      Returns:
      the value of the inlines record component