Package com.google.cloud.automl.v1beta1
Interface StructStatsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StructStats
,StructStats.Builder
public interface StructStatsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsFieldStats(String key)
Map from a field name of the struct to data stats aggregated over series of all data in that field across all the structs.Map<String,DataStats>
getFieldStats()
Deprecated.int
getFieldStatsCount()
Map from a field name of the struct to data stats aggregated over series of all data in that field across all the structs.Map<String,DataStats>
getFieldStatsMap()
Map from a field name of the struct to data stats aggregated over series of all data in that field across all the structs.DataStats
getFieldStatsOrDefault(String key, DataStats defaultValue)
Map from a field name of the struct to data stats aggregated over series of all data in that field across all the structs.DataStats
getFieldStatsOrThrow(String key)
Map from a field name of the struct to data stats aggregated over series of all data in that field across all the structs.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFieldStatsCount
int getFieldStatsCount()
Map from a field name of the struct to data stats aggregated over series of all data in that field across all the structs.
map<string, .google.cloud.automl.v1beta1.DataStats> field_stats = 1;
-
containsFieldStats
boolean containsFieldStats(String key)
Map from a field name of the struct to data stats aggregated over series of all data in that field across all the structs.
map<string, .google.cloud.automl.v1beta1.DataStats> field_stats = 1;
-
getFieldStats
@Deprecated Map<String,DataStats> getFieldStats()
Deprecated.UsegetFieldStatsMap()
instead.
-
getFieldStatsMap
Map<String,DataStats> getFieldStatsMap()
Map from a field name of the struct to data stats aggregated over series of all data in that field across all the structs.
map<string, .google.cloud.automl.v1beta1.DataStats> field_stats = 1;
-
getFieldStatsOrDefault
DataStats getFieldStatsOrDefault(String key, DataStats defaultValue)
Map from a field name of the struct to data stats aggregated over series of all data in that field across all the structs.
map<string, .google.cloud.automl.v1beta1.DataStats> field_stats = 1;
-
-