Interface MessageAnnotationOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    MessageAnnotation, MessageAnnotation.Builder

    public interface MessageAnnotationOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Detail

      • getPartsList

        List<AnnotatedMessagePart> getPartsList()
         Optional. The collection of annotated message parts ordered by their
         position in the message. You can recover the annotated message by
         concatenating [AnnotatedMessagePart.text].
         
        repeated .google.cloud.dialogflow.v2beta1.AnnotatedMessagePart parts = 1;
      • getParts

        AnnotatedMessagePart getParts​(int index)
         Optional. The collection of annotated message parts ordered by their
         position in the message. You can recover the annotated message by
         concatenating [AnnotatedMessagePart.text].
         
        repeated .google.cloud.dialogflow.v2beta1.AnnotatedMessagePart parts = 1;
      • getPartsCount

        int getPartsCount()
         Optional. The collection of annotated message parts ordered by their
         position in the message. You can recover the annotated message by
         concatenating [AnnotatedMessagePart.text].
         
        repeated .google.cloud.dialogflow.v2beta1.AnnotatedMessagePart parts = 1;
      • getPartsOrBuilderList

        List<? extends AnnotatedMessagePartOrBuilder> getPartsOrBuilderList()
         Optional. The collection of annotated message parts ordered by their
         position in the message. You can recover the annotated message by
         concatenating [AnnotatedMessagePart.text].
         
        repeated .google.cloud.dialogflow.v2beta1.AnnotatedMessagePart parts = 1;
      • getPartsOrBuilder

        AnnotatedMessagePartOrBuilder getPartsOrBuilder​(int index)
         Optional. The collection of annotated message parts ordered by their
         position in the message. You can recover the annotated message by
         concatenating [AnnotatedMessagePart.text].
         
        repeated .google.cloud.dialogflow.v2beta1.AnnotatedMessagePart parts = 1;
      • getContainEntities

        boolean getContainEntities()
         Required. Indicates whether the text message contains entities.
         
        bool contain_entities = 2;
        Returns:
        The containEntities.