public final class

TextClassification.Request.Builder

extends java.lang.Object

 java.lang.Object

↳androidx.textclassifier.TextClassification.Request.Builder

Overview

A builder for building TextClassification requests.

Summary

Constructors
publicBuilder(java.lang.CharSequence text, int startIndex, int endIndex)

Methods
public TextClassification.Requestbuild()

Builds and returns the request object.

public TextClassification.Request.BuildersetDefaultLocales(LocaleListCompat defaultLocales)

public TextClassification.Request.BuildersetExtras(Bundle extras)

Sets the extended, vendor specific data.

public TextClassification.Request.BuildersetReferenceTime(java.lang.Long referenceTime)

from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructors

public Builder(java.lang.CharSequence text, int startIndex, int endIndex)

Parameters:

text: text providing context for the text to classify (which is specified by the sub sequence starting at startIndex and ending at endIndex)
startIndex: start index of the text to classify
endIndex: end index of the text to classify

Methods

public TextClassification.Request.Builder setDefaultLocales(LocaleListCompat defaultLocales)

Parameters:

defaultLocales: ordered list of locale preferences that may be used to disambiguate the provided text. If no locale preferences exist, set this to null or an empty locale list.

Returns:

this builder

public TextClassification.Request.Builder setReferenceTime(java.lang.Long referenceTime)

Parameters:

referenceTime: reference time based on which relative dates (e.g. "tomorrow") should be interpreted. This should usually be the time when the text was originally composed and should be milliseconds from the epoch of 1970-01-01T00:00:00Z(UTC timezone). For example, if there is a message saying "see you 10 days later", and the message was composed yesterday, text classifier will then realize it is indeed means 9 days later from now and classify the text accordingly. If no reference time is set, now is used.

Returns:

this builder

public TextClassification.Request.Builder setExtras(Bundle extras)

Sets the extended, vendor specific data.

Returns:

this builder

Builds and returns the request object.