Class SummaryEntry


  • @JsonData
    public class SummaryEntry
    extends java.lang.Object
    One detail-entry for the summary of components. This is a simple label-value combination.
    Since:
    taskplanner 3.0
    See Also:
    SummaryInfo
    • Constructor Summary

      Constructors 
      Constructor Description
      SummaryEntry​(java.lang.String label, java.lang.String value)
      Creates a new SummaryEntry instance.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getLabel()
      Returns the label of this SummaryInfo
      java.lang.String getValue()
      Returns the value of this SummaryInfo
      • Methods inherited from class java.lang.Object

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

      • SummaryEntry

        public SummaryEntry​(@Nullable
                            java.lang.String label,
                            @Nullable
                            java.lang.String value)
        Creates a new SummaryEntry instance.
        Parameters:
        label - the label of the entry. A null label is allowed to show information without label.
        value - the value of the entry
        Since:
        taskplanner 3.0
    • Method Detail

      • getLabel

        @Nullable
        public java.lang.String getLabel()
        Returns the label of this SummaryInfo
        Returns:
        the label
      • getValue

        @Nullable
        public java.lang.String getValue()
        Returns the value of this SummaryInfo
        Returns:
        the value