Interface Section
@Immutable
@API(status=EXPERIMENTAL,
since="0.2.0")
public interface Section
A titled section to be rendered in the HTML report.
- Since:
- 0.2.0
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionstatic Section.Builderbuilder()Returns a new builder forSection.Returns the blocks in this section.Returns the meta information of this section.default intgetOrder()Returns the order of this section.getTitle()Returns the title of this section.
-
Method Details
-
builder
Returns a new builder forSection.- Returns:
- a new builder for
Section
-
getTitle
String getTitle()Returns the title of this section.- Returns:
- the title of this section
-
getMetaInfo
Returns the meta information of this section.This may, for example, contain a timestamp.
- Returns:
- the meta information of this section
-
getBlocks
Returns the blocks in this section.- Returns:
- the blocks in this section
-
getOrder
@Default default int getOrder()Returns the order of this section.This is used to sort the all contributed sections in the HTML report.
- Returns:
- the order of this section
-