Package com.google.monitoring.v3
Interface TimeSeriesData.PointDataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TimeSeriesData.PointData,TimeSeriesData.PointData.Builder
- Enclosing class:
- TimeSeriesData
public static interface TimeSeriesData.PointDataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TimeIntervalgetTimeInterval()The time interval associated with the point.TimeIntervalOrBuildergetTimeIntervalOrBuilder()The time interval associated with the point.TypedValuegetValues(int index)The values that make up the point.intgetValuesCount()The values that make up the point.List<TypedValue>getValuesList()The values that make up the point.TypedValueOrBuildergetValuesOrBuilder(int index)The values that make up the point.List<? extends TypedValueOrBuilder>getValuesOrBuilderList()The values that make up the point.booleanhasTimeInterval()The time interval associated with the point.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getValuesList
List<TypedValue> getValuesList()
The values that make up the point.
repeated .google.monitoring.v3.TypedValue values = 1;
-
getValues
TypedValue getValues(int index)
The values that make up the point.
repeated .google.monitoring.v3.TypedValue values = 1;
-
getValuesCount
int getValuesCount()
The values that make up the point.
repeated .google.monitoring.v3.TypedValue values = 1;
-
getValuesOrBuilderList
List<? extends TypedValueOrBuilder> getValuesOrBuilderList()
The values that make up the point.
repeated .google.monitoring.v3.TypedValue values = 1;
-
getValuesOrBuilder
TypedValueOrBuilder getValuesOrBuilder(int index)
The values that make up the point.
repeated .google.monitoring.v3.TypedValue values = 1;
-
hasTimeInterval
boolean hasTimeInterval()
The time interval associated with the point.
.google.monitoring.v3.TimeInterval time_interval = 2;- Returns:
- Whether the timeInterval field is set.
-
getTimeInterval
TimeInterval getTimeInterval()
The time interval associated with the point.
.google.monitoring.v3.TimeInterval time_interval = 2;- Returns:
- The timeInterval.
-
getTimeIntervalOrBuilder
TimeIntervalOrBuilder getTimeIntervalOrBuilder()
The time interval associated with the point.
.google.monitoring.v3.TimeInterval time_interval = 2;
-
-