Class SummaryEntry
- java.lang.Object
-
- com.inet.taskplanner.server.api.common.SummaryEntry
-
@JsonData public class SummaryEntry extends java.lang.ObjectOne 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.StringgetLabel()Returns the label of this SummaryInfojava.lang.StringgetValue()Returns the value of this SummaryInfo
-
-
-
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
-
-