TextClassification.Builder | API reference | Android Developers
Summary: Ctors | Methods | Inherited Methods
public
static
final
class
TextClassification.Builder
extends Object
Builder for building TextClassification objects.
e.g.
TextClassification classification = new TextClassification.Builder()
.setText(classifiedText)
.setEntityType(TextClassifier.TYPE_EMAIL, 0.9)
.setEntityType(TextClassifier.TYPE_OTHER, 0.1)
.addAction(remoteAction1)
.addAction(remoteAction2)
.build();
Summary
Public constructors | |
|---|---|
Builder()
|
|
Public methods | |
|---|---|
TextClassification.Builder
|
addAction(RemoteAction action)
Adds an action that may be performed on the classified text. |
TextClassification
|
build()
Builds and returns a |
TextClassification.Builder
|
setEntityType(String type, float confidenceScore)
Sets an entity type for the classification result and assigns a confidence score. |
TextClassification.Builder
|
setExtras(Bundle extras)
Sets the extended data. |
TextClassification.Builder
|
setIcon(Drawable icon)
This method was deprecated
in API level 28.
Use |
TextClassification.Builder
|
setId(String id)
Sets an id for the TextClassification object. |
TextClassification.Builder
|
setIntent(Intent intent)
This method was deprecated
in API level 28.
Use |
TextClassification.Builder
|
setLabel(String label)
This method was deprecated
in API level 28.
Use |
TextClassification.Builder
|
setOnClickListener(View.OnClickListener onClickListener)
This method was deprecated
in API level 28.
Use |
TextClassification.Builder
|
setText(String text)
Sets the classified text. |
Inherited methods | |||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
From class
| |||||||||||||||||||||||
Public constructors
Builder
public Builder ()
Public methods
addAction
public TextClassification.Builder addAction (RemoteAction action)
Adds an action that may be performed on the classified text. Actions should be added in order of likelihood that the user will use them, with the most likely action being added first.
| Parameters | |
|---|---|
action |
RemoteAction: This value cannot be null. |
| Returns | |
|---|---|
TextClassification.Builder |
This value cannot be null. |
setIcon
public TextClassification.Builder setIcon (Drawable icon)
This method was deprecated
in API level 28.
Use addAction(RemoteAction) instead.
Sets the icon for the primary action that may be rendered on a widget used to act on the classified text.
NOTE: This field is not parcelled. If read from a parcel, the
returned icon represents the icon of the first RemoteAction (if one exists).
| Parameters | |
|---|---|
icon |
Drawable: This value may be null. |
| Returns | |
|---|---|
TextClassification.Builder |
This value cannot be null. |
setLabel
public TextClassification.Builder setLabel (String label)
This method was deprecated
in API level 28.
Use addAction(RemoteAction) instead.
Sets the label for the primary action that may be rendered on a widget used to act on the classified text.
NOTE: This field is not parcelled. If read from a parcel, the
returned label represents the label of the first RemoteAction (if one exists).
| Parameters | |
|---|---|
label |
String: This value may be null. |
| Returns | |
|---|---|
TextClassification.Builder |
This value cannot be null. |
setOnClickListener
public TextClassification.Builder setOnClickListener (View.OnClickListener onClickListener)
This method was deprecated
in API level 28.
Use addAction(RemoteAction) instead.
Sets the OnClickListener for the primary action that may be triggered to act on the classified text.
NOTE: This field is not parcelable. If read from a parcel, the
returned OnClickListener represents the first RemoteAction (if one exists).
| Parameters | |
|---|---|
onClickListener |
View.OnClickListener: This value may be null. |
| Returns | |
|---|---|
TextClassification.Builder |
This value cannot be null. |