Enum StreamingRecognizeResponse.SpeechEventType

    • Enum Constant Detail

      • END_OF_SINGLE_UTTERANCE

        public static final StreamingRecognizeResponse.SpeechEventType END_OF_SINGLE_UTTERANCE
         This event indicates that the server has detected the end of the user's
         speech utterance and expects no additional speech. Therefore, the server
         will not process additional audio (although it may subsequently return
         additional results). The client should stop sending additional audio
         data, half-close the gRPC connection, and wait for any additional results
         until the server closes the gRPC connection. This event is only sent if
         `single_utterance` was set to `true`, and is not used otherwise.
         
        END_OF_SINGLE_UTTERANCE = 1;
      • SPEECH_ACTIVITY_BEGIN

        public static final StreamingRecognizeResponse.SpeechEventType SPEECH_ACTIVITY_BEGIN
         This event indicates that the server has detected the beginning of human
         voice activity in the stream. This event can be returned multiple times
         if speech starts and stops repeatedly throughout the stream. This event
         is only sent if `voice_activity_events` is set to true.
         
        SPEECH_ACTIVITY_BEGIN = 2;
      • SPEECH_ACTIVITY_END

        public static final StreamingRecognizeResponse.SpeechEventType SPEECH_ACTIVITY_END
         This event indicates that the server has detected the end of human voice
         activity in the stream. This event can be returned multiple times if
         speech starts and stops repeatedly throughout the stream. This event is
         only sent if `voice_activity_events` is set to true.
         
        SPEECH_ACTIVITY_END = 3;
      • SPEECH_ACTIVITY_TIMEOUT

        public static final StreamingRecognizeResponse.SpeechEventType SPEECH_ACTIVITY_TIMEOUT
         This event indicates that the user-set timeout for speech activity begin
         or end has exceeded. Upon receiving this event, the client is expected to
         send a half close. Further audio will not be processed.
         
        SPEECH_ACTIVITY_TIMEOUT = 4;
    • Field Detail

      • SPEECH_EVENT_UNSPECIFIED_VALUE

        public static final int SPEECH_EVENT_UNSPECIFIED_VALUE
         No speech event specified.
         
        SPEECH_EVENT_UNSPECIFIED = 0;
        See Also:
        Constant Field Values
      • END_OF_SINGLE_UTTERANCE_VALUE

        public static final int END_OF_SINGLE_UTTERANCE_VALUE
         This event indicates that the server has detected the end of the user's
         speech utterance and expects no additional speech. Therefore, the server
         will not process additional audio (although it may subsequently return
         additional results). The client should stop sending additional audio
         data, half-close the gRPC connection, and wait for any additional results
         until the server closes the gRPC connection. This event is only sent if
         `single_utterance` was set to `true`, and is not used otherwise.
         
        END_OF_SINGLE_UTTERANCE = 1;
        See Also:
        Constant Field Values
      • SPEECH_ACTIVITY_BEGIN_VALUE

        public static final int SPEECH_ACTIVITY_BEGIN_VALUE
         This event indicates that the server has detected the beginning of human
         voice activity in the stream. This event can be returned multiple times
         if speech starts and stops repeatedly throughout the stream. This event
         is only sent if `voice_activity_events` is set to true.
         
        SPEECH_ACTIVITY_BEGIN = 2;
        See Also:
        Constant Field Values
      • SPEECH_ACTIVITY_END_VALUE

        public static final int SPEECH_ACTIVITY_END_VALUE
         This event indicates that the server has detected the end of human voice
         activity in the stream. This event can be returned multiple times if
         speech starts and stops repeatedly throughout the stream. This event is
         only sent if `voice_activity_events` is set to true.
         
        SPEECH_ACTIVITY_END = 3;
        See Also:
        Constant Field Values
      • SPEECH_ACTIVITY_TIMEOUT_VALUE

        public static final int SPEECH_ACTIVITY_TIMEOUT_VALUE
         This event indicates that the user-set timeout for speech activity begin
         or end has exceeded. Upon receiving this event, the client is expected to
         send a half close. Further audio will not be processed.
         
        SPEECH_ACTIVITY_TIMEOUT = 4;
        See Also:
        Constant Field Values
    • Method Detail

      • values

        public static StreamingRecognizeResponse.SpeechEventType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (StreamingRecognizeResponse.SpeechEventType c : StreamingRecognizeResponse.SpeechEventType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static StreamingRecognizeResponse.SpeechEventType valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getNumber

        public final int getNumber()
        Specified by:
        getNumber in interface com.google.protobuf.Internal.EnumLite
        Specified by:
        getNumber in interface com.google.protobuf.ProtocolMessageEnum
      • valueOf

        @Deprecated
        public static StreamingRecognizeResponse.SpeechEventType valueOf​(int value)
        Deprecated.
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        value - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • forNumber

        public static StreamingRecognizeResponse.SpeechEventType forNumber​(int value)
        Parameters:
        value - The numeric wire value of the corresponding enum entry.
        Returns:
        The enum associated with the given numeric wire value.
      • getValueDescriptor

        public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
        Specified by:
        getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptorForType

        public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptor

        public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
      • valueOf

        public static StreamingRecognizeResponse.SpeechEventType valueOf​(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        desc - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null