Interface SegmentOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Segment,Segment.Builder
public interface SegmentOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetEnd()uint64 end = 3 [json_name = "end"];longgetStart()uint64 start = 2 [json_name = "start"];java.lang.StringgetText()string text = 1 [json_name = "text"];com.google.protobuf.ByteStringgetTextBytes()string text = 1 [json_name = "text"];-
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()
string text = 1 [json_name = "text"];- Returns:
- The text.
-
getTextBytes
com.google.protobuf.ByteString getTextBytes()
string text = 1 [json_name = "text"];- Returns:
- The bytes for text.
-
getStart
long getStart()
uint64 start = 2 [json_name = "start"];- Returns:
- The start.
-
getEnd
long getEnd()
uint64 end = 3 [json_name = "end"];- Returns:
- The end.
-
-