final class TextInput extends GeneratedMessageV3 with TextInputOrBuilder

A field in which users can enter text. Supports suggestions and on-change
actions. For an example in Google Chat apps, see [Add a field in which a user
can enter
text](https://developers.google.com/workspace/chat/design-interactive-card-dialog#add_a_field_in_which_a_user_can_enter_text).

Chat apps receive and can process the value of entered text during form input
events. For details about working with form inputs, see [Receive form
data](https://developers.google.com/workspace/chat/read-form-data).

When you need to collect undefined or abstract data from users,
use a text input. To collect defined or enumerated data from users, use the
[SelectionInput][google.apps.card.v1.SelectionInput] widget.

[Google Workspace Add-ons and Chat
apps](https://developers.google.com/workspace/extend):

Protobuf type google.apps.card.v1.TextInput

Source
TextInput.java
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TextInput
  2. TextInputOrBuilder
  3. GeneratedMessageV3
  4. Serializable
  5. AbstractMessage
  6. Message
  7. MessageOrBuilder
  8. AbstractMessageLite
  9. MessageLite
  10. MessageLiteOrBuilder
  11. AnyRef
  12. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(obj: AnyRef): Boolean
    Definition Classes
    TextInput → AbstractMessage → Message → AnyRef → Any
    Annotations
    @Override()
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. def findInitializationErrors(): List[String]
    Definition Classes
    AbstractMessage → MessageOrBuilder
  10. def getAllFields(): Map[FieldDescriptor, AnyRef]
    Definition Classes
    GeneratedMessageV3 → MessageOrBuilder
  11. def getAutoCompleteAction(): Action

    Optional. Specify what action to take when the text input field provides
    suggestions to users who interact with it.
    
    If unspecified, the suggestions are set by `initialSuggestions` and
    are processed by the client.
    
    If specified, the app takes the action specified here, such as running
    a custom function.
    
    [Google Workspace
    Add-ons](https://developers.google.com/workspace/add-ons):
    

    Optional. Specify what action to take when the text input field provides
    suggestions to users who interact with it.
    
    If unspecified, the suggestions are set by `initialSuggestions` and
    are processed by the client.
    
    If specified, the app takes the action specified here, such as running
    a custom function.
    
    [Google Workspace
    Add-ons](https://developers.google.com/workspace/add-ons):
    

    .google.apps.card.v1.Action auto_complete_action = 8;

    returns

    The autoCompleteAction.

    Definition Classes
    TextInputTextInputOrBuilder
    Annotations
    @Override()
  12. def getAutoCompleteActionOrBuilder(): ActionOrBuilder

    Optional. Specify what action to take when the text input field provides
    suggestions to users who interact with it.
    
    If unspecified, the suggestions are set by `initialSuggestions` and
    are processed by the client.
    
    If specified, the app takes the action specified here, such as running
    a custom function.
    
    [Google Workspace
    Add-ons](https://developers.google.com/workspace/add-ons):
    

    Optional. Specify what action to take when the text input field provides
    suggestions to users who interact with it.
    
    If unspecified, the suggestions are set by `initialSuggestions` and
    are processed by the client.
    
    If specified, the app takes the action specified here, such as running
    a custom function.
    
    [Google Workspace
    Add-ons](https://developers.google.com/workspace/add-ons):
    

    .google.apps.card.v1.Action auto_complete_action = 8;

    Definition Classes
    TextInputTextInputOrBuilder
    Annotations
    @Override()
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def getDefaultInstanceForType(): TextInput
    Definition Classes
    TextInput → MessageOrBuilder → MessageLiteOrBuilder
    Annotations
    @Override()
  15. def getDescriptorForType(): Descriptor
    Definition Classes
    GeneratedMessageV3 → MessageOrBuilder
  16. def getField(arg0: FieldDescriptor): AnyRef
    Definition Classes
    GeneratedMessageV3 → MessageOrBuilder
  17. def getHintText(): String

    Text that appears below the text input field meant to assist users by
    prompting them to enter a certain value. This text is always visible.
    
    Required if `label` is unspecified. Otherwise, optional.
    

    Text that appears below the text input field meant to assist users by
    prompting them to enter a certain value. This text is always visible.
    
    Required if `label` is unspecified. Otherwise, optional.
    

    string hint_text = 3;

    returns

    The hintText.

    Definition Classes
    TextInputTextInputOrBuilder
    Annotations
    @Override()
  18. def getHintTextBytes(): ByteString

    Text that appears below the text input field meant to assist users by
    prompting them to enter a certain value. This text is always visible.
    
    Required if `label` is unspecified. Otherwise, optional.
    

    Text that appears below the text input field meant to assist users by
    prompting them to enter a certain value. This text is always visible.
    
    Required if `label` is unspecified. Otherwise, optional.
    

    string hint_text = 3;

    returns

    The bytes for hintText.

    Definition Classes
    TextInputTextInputOrBuilder
    Annotations
    @Override()
  19. def getInitialSuggestions(): Suggestions

    Suggested values that users can enter. These values appear when users click
    inside the text input field. As users type, the suggested values
    dynamically filter to match what the users have typed.
    
    For example, a text input field for programming language might suggest
    Java, JavaScript, Python, and C++. When users start typing `Jav`, the list
    of suggestions filters to show just `Java` and `JavaScript`.
    
    Suggested values help guide users to enter values that your app can make
    sense of. When referring to JavaScript, some users might enter `javascript`
    and others `java script`. Suggesting `JavaScript` can standardize how users
    interact with your app.
    
    When specified, `TextInput.type` is always `SINGLE_LINE`, even if it's set
    to `MULTIPLE_LINE`.
    
    [Google Workspace
    Add-ons and Chat apps](https://developers.google.com/workspace/extend):
    

    Suggested values that users can enter. These values appear when users click
    inside the text input field. As users type, the suggested values
    dynamically filter to match what the users have typed.
    
    For example, a text input field for programming language might suggest
    Java, JavaScript, Python, and C++. When users start typing `Jav`, the list
    of suggestions filters to show just `Java` and `JavaScript`.
    
    Suggested values help guide users to enter values that your app can make
    sense of. When referring to JavaScript, some users might enter `javascript`
    and others `java script`. Suggesting `JavaScript` can standardize how users
    interact with your app.
    
    When specified, `TextInput.type` is always `SINGLE_LINE`, even if it's set
    to `MULTIPLE_LINE`.
    
    [Google Workspace
    Add-ons and Chat apps](https://developers.google.com/workspace/extend):
    

    .google.apps.card.v1.Suggestions initial_suggestions = 7;

    returns

    The initialSuggestions.

    Definition Classes
    TextInputTextInputOrBuilder
    Annotations
    @Override()
  20. def getInitialSuggestionsOrBuilder(): SuggestionsOrBuilder

    Suggested values that users can enter. These values appear when users click
    inside the text input field. As users type, the suggested values
    dynamically filter to match what the users have typed.
    
    For example, a text input field for programming language might suggest
    Java, JavaScript, Python, and C++. When users start typing `Jav`, the list
    of suggestions filters to show just `Java` and `JavaScript`.
    
    Suggested values help guide users to enter values that your app can make
    sense of. When referring to JavaScript, some users might enter `javascript`
    and others `java script`. Suggesting `JavaScript` can standardize how users
    interact with your app.
    
    When specified, `TextInput.type` is always `SINGLE_LINE`, even if it's set
    to `MULTIPLE_LINE`.
    
    [Google Workspace
    Add-ons and Chat apps](https://developers.google.com/workspace/extend):
    

    Suggested values that users can enter. These values appear when users click
    inside the text input field. As users type, the suggested values
    dynamically filter to match what the users have typed.
    
    For example, a text input field for programming language might suggest
    Java, JavaScript, Python, and C++. When users start typing `Jav`, the list
    of suggestions filters to show just `Java` and `JavaScript`.
    
    Suggested values help guide users to enter values that your app can make
    sense of. When referring to JavaScript, some users might enter `javascript`
    and others `java script`. Suggesting `JavaScript` can standardize how users
    interact with your app.
    
    When specified, `TextInput.type` is always `SINGLE_LINE`, even if it's set
    to `MULTIPLE_LINE`.
    
    [Google Workspace
    Add-ons and Chat apps](https://developers.google.com/workspace/extend):
    

    .google.apps.card.v1.Suggestions initial_suggestions = 7;

    Definition Classes
    TextInputTextInputOrBuilder
    Annotations
    @Override()
  21. def getInitializationErrorString(): String
    Definition Classes
    AbstractMessage → MessageOrBuilder
  22. def getLabel(): String

    The text that appears above the text input field in the user interface.
    
    Specify text that helps the user enter the information your app needs.
    For example, if you are asking someone's name, but specifically need their
    surname, write `surname` instead of `name`.
    
    Required if `hintText` is unspecified. Otherwise, optional.
    

    The text that appears above the text input field in the user interface.
    
    Specify text that helps the user enter the information your app needs.
    For example, if you are asking someone's name, but specifically need their
    surname, write `surname` instead of `name`.
    
    Required if `hintText` is unspecified. Otherwise, optional.
    

    string label = 2;

    returns

    The label.

    Definition Classes
    TextInputTextInputOrBuilder
    Annotations
    @Override()
  23. def getLabelBytes(): ByteString

    The text that appears above the text input field in the user interface.
    
    Specify text that helps the user enter the information your app needs.
    For example, if you are asking someone's name, but specifically need their
    surname, write `surname` instead of `name`.
    
    Required if `hintText` is unspecified. Otherwise, optional.
    

    The text that appears above the text input field in the user interface.
    
    Specify text that helps the user enter the information your app needs.
    For example, if you are asking someone's name, but specifically need their
    surname, write `surname` instead of `name`.
    
    Required if `hintText` is unspecified. Otherwise, optional.
    

    string label = 2;

    returns

    The bytes for label.

    Definition Classes
    TextInputTextInputOrBuilder
    Annotations
    @Override()
  24. def getName(): String

    The name by which the text input is identified in a form input event.
    
    For details about working with form inputs, see [Receive form
    data](https://developers.google.com/workspace/chat/read-form-data).
    

    The name by which the text input is identified in a form input event.
    
    For details about working with form inputs, see [Receive form
    data](https://developers.google.com/workspace/chat/read-form-data).
    

    string name = 1;

    returns

    The name.

    Definition Classes
    TextInputTextInputOrBuilder
    Annotations
    @Override()
  25. def getNameBytes(): ByteString

    The name by which the text input is identified in a form input event.
    
    For details about working with form inputs, see [Receive form
    data](https://developers.google.com/workspace/chat/read-form-data).
    

    The name by which the text input is identified in a form input event.
    
    For details about working with form inputs, see [Receive form
    data](https://developers.google.com/workspace/chat/read-form-data).
    

    string name = 1;

    returns

    The bytes for name.

    Definition Classes
    TextInputTextInputOrBuilder
    Annotations
    @Override()
  26. def getOnChangeAction(): Action

    What to do when a change occurs in the text input field. For example, a
    user adding to the field or deleting text.
    
    Examples of actions to take include running a custom function or opening
    a [dialog](https://developers.google.com/workspace/chat/dialogs)
    in Google Chat.
    

    What to do when a change occurs in the text input field. For example, a
    user adding to the field or deleting text.
    
    Examples of actions to take include running a custom function or opening
    a [dialog](https://developers.google.com/workspace/chat/dialogs)
    in Google Chat.
    

    .google.apps.card.v1.Action on_change_action = 6;

    returns

    The onChangeAction.

    Definition Classes
    TextInputTextInputOrBuilder
    Annotations
    @Override()
  27. def getOnChangeActionOrBuilder(): ActionOrBuilder

    What to do when a change occurs in the text input field. For example, a
    user adding to the field or deleting text.
    
    Examples of actions to take include running a custom function or opening
    a [dialog](https://developers.google.com/workspace/chat/dialogs)
    in Google Chat.
    

    What to do when a change occurs in the text input field. For example, a
    user adding to the field or deleting text.
    
    Examples of actions to take include running a custom function or opening
    a [dialog](https://developers.google.com/workspace/chat/dialogs)
    in Google Chat.
    

    .google.apps.card.v1.Action on_change_action = 6;

    Definition Classes
    TextInputTextInputOrBuilder
    Annotations
    @Override()
  28. def getOneofFieldDescriptor(arg0: OneofDescriptor): FieldDescriptor
    Definition Classes
    GeneratedMessageV3 → AbstractMessage → MessageOrBuilder
  29. def getParserForType(): Parser[TextInput]
    Definition Classes
    TextInput → GeneratedMessageV3 → Message → MessageLite
    Annotations
    @Override()
  30. def getPlaceholderText(): String

    Text that appears in the text input field when the field is empty.
    Use this text to prompt users to enter a value. For example, `Enter a
    number from 0 to 100`.
    
    [Google Chat apps](https://developers.google.com/workspace/chat):
    

    Text that appears in the text input field when the field is empty.
    Use this text to prompt users to enter a value. For example, `Enter a
    number from 0 to 100`.
    
    [Google Chat apps](https://developers.google.com/workspace/chat):
    

    string placeholder_text = 12;

    returns

    The placeholderText.

    Definition Classes
    TextInputTextInputOrBuilder
    Annotations
    @Override()
  31. def getPlaceholderTextBytes(): ByteString

    Text that appears in the text input field when the field is empty.
    Use this text to prompt users to enter a value. For example, `Enter a
    number from 0 to 100`.
    
    [Google Chat apps](https://developers.google.com/workspace/chat):
    

    Text that appears in the text input field when the field is empty.
    Use this text to prompt users to enter a value. For example, `Enter a
    number from 0 to 100`.
    
    [Google Chat apps](https://developers.google.com/workspace/chat):
    

    string placeholder_text = 12;

    returns

    The bytes for placeholderText.

    Definition Classes
    TextInputTextInputOrBuilder
    Annotations
    @Override()
  32. def getRepeatedField(arg0: FieldDescriptor, arg1: Int): AnyRef
    Definition Classes
    GeneratedMessageV3 → MessageOrBuilder
  33. def getRepeatedFieldCount(arg0: FieldDescriptor): Int
    Definition Classes
    GeneratedMessageV3 → MessageOrBuilder
  34. def getSerializedSize(): Int
    Definition Classes
    TextInput → GeneratedMessageV3 → AbstractMessage → MessageLite
    Annotations
    @Override()
  35. def getType(): Type

    How a text input field appears in the user interface.
    For example, whether the field is single or multi-line.
    

    How a text input field appears in the user interface.
    For example, whether the field is single or multi-line.
    

    .google.apps.card.v1.TextInput.Type type = 5;

    returns

    The type.

    Definition Classes
    TextInputTextInputOrBuilder
    Annotations
    @Override()
  36. def getTypeValue(): Int

    How a text input field appears in the user interface.
    For example, whether the field is single or multi-line.
    

    How a text input field appears in the user interface.
    For example, whether the field is single or multi-line.
    

    .google.apps.card.v1.TextInput.Type type = 5;

    returns

    The enum numeric value on the wire for type.

    Definition Classes
    TextInputTextInputOrBuilder
    Annotations
    @Override()
  37. def getUnknownFields(): UnknownFieldSet
    Definition Classes
    GeneratedMessageV3 → MessageOrBuilder
  38. def getValue(): String

    The value entered by a user, returned as part of a form input event.
    
    For details about working with form inputs, see [Receive form
    data](https://developers.google.com/workspace/chat/read-form-data).
    

    The value entered by a user, returned as part of a form input event.
    
    For details about working with form inputs, see [Receive form
    data](https://developers.google.com/workspace/chat/read-form-data).
    

    string value = 4;

    returns

    The value.

    Definition Classes
    TextInputTextInputOrBuilder
    Annotations
    @Override()
  39. def getValueBytes(): ByteString

    The value entered by a user, returned as part of a form input event.
    
    For details about working with form inputs, see [Receive form
    data](https://developers.google.com/workspace/chat/read-form-data).
    

    The value entered by a user, returned as part of a form input event.
    
    For details about working with form inputs, see [Receive form
    data](https://developers.google.com/workspace/chat/read-form-data).
    

    string value = 4;

    returns

    The bytes for value.

    Definition Classes
    TextInputTextInputOrBuilder
    Annotations
    @Override()
  40. def hasAutoCompleteAction(): Boolean

    Optional. Specify what action to take when the text input field provides
    suggestions to users who interact with it.
    
    If unspecified, the suggestions are set by `initialSuggestions` and
    are processed by the client.
    
    If specified, the app takes the action specified here, such as running
    a custom function.
    
    [Google Workspace
    Add-ons](https://developers.google.com/workspace/add-ons):
    

    Optional. Specify what action to take when the text input field provides
    suggestions to users who interact with it.
    
    If unspecified, the suggestions are set by `initialSuggestions` and
    are processed by the client.
    
    If specified, the app takes the action specified here, such as running
    a custom function.
    
    [Google Workspace
    Add-ons](https://developers.google.com/workspace/add-ons):
    

    .google.apps.card.v1.Action auto_complete_action = 8;

    returns

    Whether the autoCompleteAction field is set.

    Definition Classes
    TextInputTextInputOrBuilder
    Annotations
    @Override()
  41. def hasField(arg0: FieldDescriptor): Boolean
    Definition Classes
    GeneratedMessageV3 → MessageOrBuilder
  42. def hasInitialSuggestions(): Boolean

    Suggested values that users can enter. These values appear when users click
    inside the text input field. As users type, the suggested values
    dynamically filter to match what the users have typed.
    
    For example, a text input field for programming language might suggest
    Java, JavaScript, Python, and C++. When users start typing `Jav`, the list
    of suggestions filters to show just `Java` and `JavaScript`.
    
    Suggested values help guide users to enter values that your app can make
    sense of. When referring to JavaScript, some users might enter `javascript`
    and others `java script`. Suggesting `JavaScript` can standardize how users
    interact with your app.
    
    When specified, `TextInput.type` is always `SINGLE_LINE`, even if it's set
    to `MULTIPLE_LINE`.
    
    [Google Workspace
    Add-ons and Chat apps](https://developers.google.com/workspace/extend):
    

    Suggested values that users can enter. These values appear when users click
    inside the text input field. As users type, the suggested values
    dynamically filter to match what the users have typed.
    
    For example, a text input field for programming language might suggest
    Java, JavaScript, Python, and C++. When users start typing `Jav`, the list
    of suggestions filters to show just `Java` and `JavaScript`.
    
    Suggested values help guide users to enter values that your app can make
    sense of. When referring to JavaScript, some users might enter `javascript`
    and others `java script`. Suggesting `JavaScript` can standardize how users
    interact with your app.
    
    When specified, `TextInput.type` is always `SINGLE_LINE`, even if it's set
    to `MULTIPLE_LINE`.
    
    [Google Workspace
    Add-ons and Chat apps](https://developers.google.com/workspace/extend):
    

    .google.apps.card.v1.Suggestions initial_suggestions = 7;

    returns

    Whether the initialSuggestions field is set.

    Definition Classes
    TextInputTextInputOrBuilder
    Annotations
    @Override()
  43. def hasOnChangeAction(): Boolean

    What to do when a change occurs in the text input field. For example, a
    user adding to the field or deleting text.
    
    Examples of actions to take include running a custom function or opening
    a [dialog](https://developers.google.com/workspace/chat/dialogs)
    in Google Chat.
    

    What to do when a change occurs in the text input field. For example, a
    user adding to the field or deleting text.
    
    Examples of actions to take include running a custom function or opening
    a [dialog](https://developers.google.com/workspace/chat/dialogs)
    in Google Chat.
    

    .google.apps.card.v1.Action on_change_action = 6;

    returns

    Whether the onChangeAction field is set.

    Definition Classes
    TextInputTextInputOrBuilder
    Annotations
    @Override()
  44. def hasOneof(arg0: OneofDescriptor): Boolean
    Definition Classes
    GeneratedMessageV3 → AbstractMessage → MessageOrBuilder
  45. def hashCode(): Int
    Definition Classes
    TextInput → AbstractMessage → Message → AnyRef → Any
    Annotations
    @Override()
  46. def internalGetFieldAccessorTable(): FieldAccessorTable
    Attributes
    protected[v1]
    Definition Classes
    TextInput → GeneratedMessageV3
    Annotations
    @Override()
  47. def internalGetMapField(arg0: Int): MapField[_ <: AnyRef, _ <: AnyRef]
    Attributes
    protected[protobuf]
    Definition Classes
    GeneratedMessageV3
  48. final def isInitialized(): Boolean
    Definition Classes
    TextInput → GeneratedMessageV3 → AbstractMessage → MessageLiteOrBuilder
    Annotations
    @Override()
  49. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  50. def makeExtensionsImmutable(): Unit
    Attributes
    protected[protobuf]
    Definition Classes
    GeneratedMessageV3
  51. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  52. def newBuilderForType(parent: BuilderParent): Builder
    Attributes
    protected[v1]
    Definition Classes
    TextInput → GeneratedMessageV3
    Annotations
    @Override()
  53. def newBuilderForType(): Builder
    Definition Classes
    TextInput → Message → MessageLite
    Annotations
    @Override()
  54. def newBuilderForType(arg0: BuilderParent): Builder
    Attributes
    protected[protobuf]
    Definition Classes
    GeneratedMessageV3 → AbstractMessage
  55. def newInstance(unused: UnusedPrivateParameter): AnyRef
    Attributes
    protected[v1]
    Definition Classes
    TextInput → GeneratedMessageV3
    Annotations
    @Override() @SuppressWarnings()
  56. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  57. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  58. def parseUnknownField(arg0: CodedInputStream, arg1: Builder, arg2: ExtensionRegistryLite, arg3: Int): Boolean
    Attributes
    protected[protobuf]
    Definition Classes
    GeneratedMessageV3
    Annotations
    @throws(classOf[java.io.IOException])
  59. def parseUnknownFieldProto3(arg0: CodedInputStream, arg1: Builder, arg2: ExtensionRegistryLite, arg3: Int): Boolean
    Attributes
    protected[protobuf]
    Definition Classes
    GeneratedMessageV3
    Annotations
    @throws(classOf[java.io.IOException])
  60. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  61. def toBuilder(): Builder
    Definition Classes
    TextInput → Message → MessageLite
    Annotations
    @Override()
  62. def toByteArray(): Array[Byte]
    Definition Classes
    AbstractMessageLite → MessageLite
  63. def toByteString(): ByteString
    Definition Classes
    AbstractMessageLite → MessageLite
  64. final def toString(): String
    Definition Classes
    AbstractMessage → Message → AnyRef → Any
  65. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  66. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  67. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  68. def writeDelimitedTo(arg0: OutputStream): Unit
    Definition Classes
    AbstractMessageLite → MessageLite
    Annotations
    @throws(classOf[java.io.IOException])
  69. def writeReplace(): AnyRef
    Attributes
    protected[protobuf]
    Definition Classes
    GeneratedMessageV3
    Annotations
    @throws(classOf[java.io.ObjectStreamException])
  70. def writeTo(output: CodedOutputStream): Unit
    Definition Classes
    TextInput → GeneratedMessageV3 → AbstractMessage → MessageLite
    Annotations
    @Override()
  71. def writeTo(arg0: OutputStream): Unit
    Definition Classes
    AbstractMessageLite → MessageLite
    Annotations
    @throws(classOf[java.io.IOException])

Deprecated Value Members

  1. def mergeFromAndMakeImmutableInternal(arg0: CodedInputStream, arg1: ExtensionRegistryLite): Unit
    Attributes
    protected[protobuf]
    Definition Classes
    GeneratedMessageV3
    Annotations
    @throws(classOf[com.google.protobuf.InvalidProtocolBufferException]) @Deprecated
    Deprecated

Inherited from TextInputOrBuilder

Inherited from GeneratedMessageV3

Inherited from Serializable

Inherited from AbstractMessage

Inherited from Message

Inherited from MessageOrBuilder

Inherited from AbstractMessageLite[MessageType, BuilderType]

Inherited from MessageLite

Inherited from MessageLiteOrBuilder

Inherited from AnyRef

Inherited from Any

Ungrouped