Interface AtomOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Atom,Atom.Builder
public interface AtomOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetParticipant()Optional: ID of the related participant.com.google.protobuf.ByteStringgetParticipantBytes()Optional: ID of the related participant.ReferencegetReference()Optional: Reference to the related resource.ReferenceOrBuildergetReferenceOrBuilder()Optional: Reference to the related resource.java.lang.StringgetText()Textual content of the argumentative discourse unit (ADU).com.google.protobuf.ByteStringgetTextBytes()Textual content of the argumentative discourse unit (ADU).booleanhasParticipant()Optional: ID of the related participant.booleanhasReference()Optional: Reference to the related resource.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getText
java.lang.String getText()
Textual content of the argumentative discourse unit (ADU).
string text = 1 [json_name = "text"];- Returns:
- The text.
-
getTextBytes
com.google.protobuf.ByteString getTextBytes()
Textual content of the argumentative discourse unit (ADU).
string text = 1 [json_name = "text"];- Returns:
- The bytes for text.
-
hasReference
boolean hasReference()
Optional: Reference to the related resource.
.arg_services.graph.v1.Reference reference = 2 [json_name = "reference"];- Returns:
- Whether the reference field is set.
-
getReference
Reference getReference()
Optional: Reference to the related resource.
.arg_services.graph.v1.Reference reference = 2 [json_name = "reference"];- Returns:
- The reference.
-
getReferenceOrBuilder
ReferenceOrBuilder getReferenceOrBuilder()
Optional: Reference to the related resource.
.arg_services.graph.v1.Reference reference = 2 [json_name = "reference"];
-
hasParticipant
boolean hasParticipant()
Optional: ID of the related participant.
optional string participant = 3 [json_name = "participant"];- Returns:
- Whether the participant field is set.
-
getParticipant
java.lang.String getParticipant()
Optional: ID of the related participant.
optional string participant = 3 [json_name = "participant"];- Returns:
- The participant.
-
getParticipantBytes
com.google.protobuf.ByteString getParticipantBytes()
Optional: ID of the related participant.
optional string participant = 3 [json_name = "participant"];- Returns:
- The bytes for participant.
-
-