Interface DataItemViewOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DataItemView
,DataItemView.Builder
public interface DataItemViewOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Annotation
getAnnotations(int index)
The Annotations on the DataItem.int
getAnnotationsCount()
The Annotations on the DataItem.List<Annotation>
getAnnotationsList()
The Annotations on the DataItem.AnnotationOrBuilder
getAnnotationsOrBuilder(int index)
The Annotations on the DataItem.List<? extends AnnotationOrBuilder>
getAnnotationsOrBuilderList()
The Annotations on the DataItem.DataItem
getDataItem()
The DataItem.DataItemOrBuilder
getDataItemOrBuilder()
The DataItem.boolean
getHasTruncatedAnnotations()
True if and only if the Annotations field has been truncated.boolean
hasDataItem()
The DataItem.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasDataItem
boolean hasDataItem()
The DataItem.
.google.cloud.aiplatform.v1beta1.DataItem data_item = 1;
- Returns:
- Whether the dataItem field is set.
-
getDataItem
DataItem getDataItem()
The DataItem.
.google.cloud.aiplatform.v1beta1.DataItem data_item = 1;
- Returns:
- The dataItem.
-
getDataItemOrBuilder
DataItemOrBuilder getDataItemOrBuilder()
The DataItem.
.google.cloud.aiplatform.v1beta1.DataItem data_item = 1;
-
getAnnotationsList
List<Annotation> getAnnotationsList()
The Annotations on the DataItem. If too many Annotations should be returned for the DataItem, this field will be truncated per annotations_limit in request. If it was, then the has_truncated_annotations will be set to true.
repeated .google.cloud.aiplatform.v1beta1.Annotation annotations = 2;
-
getAnnotations
Annotation getAnnotations(int index)
The Annotations on the DataItem. If too many Annotations should be returned for the DataItem, this field will be truncated per annotations_limit in request. If it was, then the has_truncated_annotations will be set to true.
repeated .google.cloud.aiplatform.v1beta1.Annotation annotations = 2;
-
getAnnotationsCount
int getAnnotationsCount()
The Annotations on the DataItem. If too many Annotations should be returned for the DataItem, this field will be truncated per annotations_limit in request. If it was, then the has_truncated_annotations will be set to true.
repeated .google.cloud.aiplatform.v1beta1.Annotation annotations = 2;
-
getAnnotationsOrBuilderList
List<? extends AnnotationOrBuilder> getAnnotationsOrBuilderList()
The Annotations on the DataItem. If too many Annotations should be returned for the DataItem, this field will be truncated per annotations_limit in request. If it was, then the has_truncated_annotations will be set to true.
repeated .google.cloud.aiplatform.v1beta1.Annotation annotations = 2;
-
getAnnotationsOrBuilder
AnnotationOrBuilder getAnnotationsOrBuilder(int index)
The Annotations on the DataItem. If too many Annotations should be returned for the DataItem, this field will be truncated per annotations_limit in request. If it was, then the has_truncated_annotations will be set to true.
repeated .google.cloud.aiplatform.v1beta1.Annotation annotations = 2;
-
getHasTruncatedAnnotations
boolean getHasTruncatedAnnotations()
True if and only if the Annotations field has been truncated. It happens if more Annotations for this DataItem met the request's annotation_filter than are allowed to be returned by annotations_limit. Note that if Annotations field is not being returned due to field mask, then this field will not be set to true no matter how many Annotations are there.
bool has_truncated_annotations = 3;
- Returns:
- The hasTruncatedAnnotations.
-
-