Interface ReportSummary.ChartData.DataPointOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ReportSummary.ChartData.DataPoint,ReportSummary.ChartData.DataPoint.Builder
- Enclosing class:
- ReportSummary.ChartData
public static interface ReportSummary.ChartData.DataPointOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetLabel()The X-axis label for this data point.com.google.protobuf.ByteStringgetLabelBytes()The X-axis label for this data point.doublegetValue()The Y-axis value for this data point.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLabel
String getLabel()
The X-axis label for this data point.
string label = 1;- Returns:
- The label.
-
getLabelBytes
com.google.protobuf.ByteString getLabelBytes()
The X-axis label for this data point.
string label = 1;- Returns:
- The bytes for label.
-
getValue
double getValue()
The Y-axis value for this data point.
double value = 2;- Returns:
- The value.
-
-