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 Detail

      • hasDataItem

        boolean hasDataItem()
         The DataItem.
         
        .google.cloud.aiplatform.v1.DataItem data_item = 1;
        Returns:
        Whether the dataItem field is set.
      • getDataItem

        DataItem getDataItem()
         The DataItem.
         
        .google.cloud.aiplatform.v1.DataItem data_item = 1;
        Returns:
        The dataItem.
      • getDataItemOrBuilder

        DataItemOrBuilder getDataItemOrBuilder()
         The DataItem.
         
        .google.cloud.aiplatform.v1.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.v1.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.v1.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.v1.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.v1.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.v1.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.