public static enum StreamingRecognizeResponse.EndpointerType extends Enum<StreamingRecognizeResponse.EndpointerType> implements com.google.protobuf.ProtocolMessageEnum
Indicates the type of endpointer event.Protobuf enum
google.cloud.speech.v1beta1.StreamingRecognizeResponse.EndpointerType| Enum Constant and Description |
|---|
END_OF_AUDIO
This event is sent after the client has half-closed the input stream gRPC
connection and the server has received all of the audio.
|
END_OF_SPEECH
Speech has ceased to be detected in the audio stream.
|
END_OF_UTTERANCE
This event is only sent when `single_utterance` is `true`.
|
ENDPOINTER_EVENT_UNSPECIFIED
No endpointer event specified.
|
START_OF_SPEECH
Speech has been detected in the audio stream, and the service is
beginning to process it.
|
UNRECOGNIZED |
| Modifier and Type | Field and Description |
|---|---|
static int |
END_OF_AUDIO_VALUE
This event is sent after the client has half-closed the input stream gRPC
connection and the server has received all of the audio.
|
static int |
END_OF_SPEECH_VALUE
Speech has ceased to be detected in the audio stream.
|
static int |
END_OF_UTTERANCE_VALUE
This event is only sent when `single_utterance` is `true`.
|
static int |
ENDPOINTER_EVENT_UNSPECIFIED_VALUE
No endpointer event specified.
|
static int |
START_OF_SPEECH_VALUE
Speech has been detected in the audio stream, and the service is
beginning to process it.
|
| Modifier and Type | Method and Description |
|---|---|
static StreamingRecognizeResponse.EndpointerType |
forNumber(int value) |
static com.google.protobuf.Descriptors.EnumDescriptor |
getDescriptor() |
com.google.protobuf.Descriptors.EnumDescriptor |
getDescriptorForType() |
int |
getNumber() |
com.google.protobuf.Descriptors.EnumValueDescriptor |
getValueDescriptor() |
static com.google.protobuf.Internal.EnumLiteMap<StreamingRecognizeResponse.EndpointerType> |
internalGetValueMap() |
static StreamingRecognizeResponse.EndpointerType |
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) |
static StreamingRecognizeResponse.EndpointerType |
valueOf(int value)
Deprecated.
Use
forNumber(int) instead. |
static StreamingRecognizeResponse.EndpointerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StreamingRecognizeResponse.EndpointerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StreamingRecognizeResponse.EndpointerType ENDPOINTER_EVENT_UNSPECIFIED
No endpointer event specified.
ENDPOINTER_EVENT_UNSPECIFIED = 0;public static final StreamingRecognizeResponse.EndpointerType START_OF_SPEECH
Speech has been detected in the audio stream, and the service is beginning to process it.
START_OF_SPEECH = 1;public static final StreamingRecognizeResponse.EndpointerType END_OF_SPEECH
Speech has ceased to be detected in the audio stream. (For example, the user may have paused after speaking.) If `single_utterance` is `false`, the service will continue to process audio, and if subsequent speech is detected, will send another START_OF_SPEECH event.
END_OF_SPEECH = 2;public static final StreamingRecognizeResponse.EndpointerType END_OF_AUDIO
This event is sent after the client has half-closed the input stream gRPC connection and the server has received all of the audio. (The server may still be processing the audio and may subsequently return additional results.)
END_OF_AUDIO = 3;public static final StreamingRecognizeResponse.EndpointerType END_OF_UTTERANCE
This event is only sent when `single_utterance` is `true`. It 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.
END_OF_UTTERANCE = 4;public static final StreamingRecognizeResponse.EndpointerType UNRECOGNIZED
public static final int ENDPOINTER_EVENT_UNSPECIFIED_VALUE
No endpointer event specified.
ENDPOINTER_EVENT_UNSPECIFIED = 0;public static final int START_OF_SPEECH_VALUE
Speech has been detected in the audio stream, and the service is beginning to process it.
START_OF_SPEECH = 1;public static final int END_OF_SPEECH_VALUE
Speech has ceased to be detected in the audio stream. (For example, the user may have paused after speaking.) If `single_utterance` is `false`, the service will continue to process audio, and if subsequent speech is detected, will send another START_OF_SPEECH event.
END_OF_SPEECH = 2;public static final int END_OF_AUDIO_VALUE
This event is sent after the client has half-closed the input stream gRPC connection and the server has received all of the audio. (The server may still be processing the audio and may subsequently return additional results.)
END_OF_AUDIO = 3;public static final int END_OF_UTTERANCE_VALUE
This event is only sent when `single_utterance` is `true`. It 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.
END_OF_UTTERANCE = 4;public static StreamingRecognizeResponse.EndpointerType[] values()
for (StreamingRecognizeResponse.EndpointerType c : StreamingRecognizeResponse.EndpointerType.values()) System.out.println(c);
public static StreamingRecognizeResponse.EndpointerType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic final int getNumber()
getNumber in interface com.google.protobuf.Internal.EnumLitegetNumber in interface com.google.protobuf.ProtocolMessageEnum@Deprecated public static StreamingRecognizeResponse.EndpointerType valueOf(int value)
forNumber(int) instead.public static StreamingRecognizeResponse.EndpointerType forNumber(int value)
public static com.google.protobuf.Internal.EnumLiteMap<StreamingRecognizeResponse.EndpointerType> internalGetValueMap()
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnumpublic final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnumpublic static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
public static StreamingRecognizeResponse.EndpointerType valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Copyright © 2022 Google LLC. All rights reserved.