Class TextSegment.Builder (2.83.0)

public static final class TextSegment.Builder extends GeneratedMessage.Builder<TextSegment.Builder> implements TextSegmentOrBuilder

A contiguous part of a text (string), assuming it has an UTF-8 NFC encoding.

Protobuf type google.cloud.automl.v1beta1.TextSegment

Static Methods

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
Type Description
Descriptor

Methods

build()

public TextSegment build()
Returns
Type Description
TextSegment

buildPartial()

public TextSegment buildPartial()
Returns
Type Description
TextSegment

clear()

public TextSegment.Builder clear()
Returns
Type Description
TextSegment.Builder
Overrides

clearContent()

public TextSegment.Builder clearContent()

Output only. The content of the TextSegment.

string content = 3;

Returns
Type Description
TextSegment.Builder

This builder for chaining.

clearEndOffset()

public TextSegment.Builder clearEndOffset()

Required. Zero-based character index of the first character past the end of the text segment (counting character from the beginning of the text). The character at the end_offset is NOT included in the text segment.

int64 end_offset = 2;

Returns
Type Description
TextSegment.Builder

This builder for chaining.

clearStartOffset()

public TextSegment.Builder clearStartOffset()

Required. Zero-based character index of the first character of the text segment (counting characters from the beginning of the text).

int64 start_offset = 1;

Returns
Type Description
TextSegment.Builder

This builder for chaining.

getContent()

public String getContent()

Output only. The content of the TextSegment.

string content = 3;

Returns
Type Description
String

The content.

getContentBytes()

public ByteString getContentBytes()

Output only. The content of the TextSegment.

string content = 3;

Returns
Type Description
ByteString

The bytes for content.

getDefaultInstanceForType()

public TextSegment getDefaultInstanceForType()
Returns
Type Description
TextSegment

getDescriptorForType()

public Descriptors.Descriptor getDescriptorForType()
Returns
Type Description
Descriptor
Overrides

getEndOffset()

public long getEndOffset()

Required. Zero-based character index of the first character past the end of the text segment (counting character from the beginning of the text). The character at the end_offset is NOT included in the text segment.

int64 end_offset = 2;

Returns
Type Description
long

The endOffset.

getStartOffset()

public long getStartOffset()

Required. Zero-based character index of the first character of the text segment (counting characters from the beginning of the text).

int64 start_offset = 1;

Returns
Type Description
long

The startOffset.

internalGetFieldAccessorTable()

protected GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable()
Returns
Type Description
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
Type Description
boolean
Overrides

mergeFrom(TextSegment other)

public TextSegment.Builder mergeFrom(TextSegment other)
Parameter
Name Description
other TextSegment
Returns
Type Description
TextSegment.Builder

mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public TextSegment.Builder mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input CodedInputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
TextSegment.Builder
Overrides
Exceptions
Type Description
IOException

mergeFrom(Message other)

public TextSegment.Builder mergeFrom(Message other)
Parameter
Name Description
other Message
Returns
Type Description
TextSegment.Builder
Overrides

setContent(String value)

public TextSegment.Builder setContent(String value)

Output only. The content of the TextSegment.

string content = 3;

Parameter
Name Description
value String

The content to set.

Returns
Type Description
TextSegment.Builder

This builder for chaining.

setContentBytes(ByteString value)

public TextSegment.Builder setContentBytes(ByteString value)

Output only. The content of the TextSegment.

string content = 3;

Parameter
Name Description
value ByteString

The bytes for content to set.

Returns
Type Description
TextSegment.Builder

This builder for chaining.

setEndOffset(long value)

public TextSegment.Builder setEndOffset(long value)

Required. Zero-based character index of the first character past the end of the text segment (counting character from the beginning of the text). The character at the end_offset is NOT included in the text segment.

int64 end_offset = 2;

Parameter
Name Description
value long

The endOffset to set.

Returns
Type Description
TextSegment.Builder

This builder for chaining.

setStartOffset(long value)

public TextSegment.Builder setStartOffset(long value)

Required. Zero-based character index of the first character of the text segment (counting characters from the beginning of the text).

int64 start_offset = 1;

Parameter
Name Description
value long

The startOffset to set.

Returns
Type Description
TextSegment.Builder

This builder for chaining.