Package com.google.cloud.speech.v2
Enum StreamingRecognizeResponse.SpeechEventType
- java.lang.Object
-
- java.lang.Enum<StreamingRecognizeResponse.SpeechEventType>
-
- com.google.cloud.speech.v2.StreamingRecognizeResponse.SpeechEventType
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<StreamingRecognizeResponse.SpeechEventType>
- Enclosing class:
- StreamingRecognizeResponse
public static enum StreamingRecognizeResponse.SpeechEventType extends Enum<StreamingRecognizeResponse.SpeechEventType> implements com.google.protobuf.ProtocolMessageEnum
Indicates the type of speech event.
Protobuf enumgoogle.cloud.speech.v2.StreamingRecognizeResponse.SpeechEventType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description 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.SPEECH_ACTIVITY_BEGIN
This event indicates that the server has detected the beginning of human voice activity in the stream.SPEECH_ACTIVITY_END
This event indicates that the server has detected the end of human voice activity in the stream.SPEECH_EVENT_TYPE_UNSPECIFIED
No speech event specified.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static 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.static int
SPEECH_ACTIVITY_BEGIN_VALUE
This event indicates that the server has detected the beginning of human voice activity in the stream.static int
SPEECH_ACTIVITY_END_VALUE
This event indicates that the server has detected the end of human voice activity in the stream.static int
SPEECH_EVENT_TYPE_UNSPECIFIED_VALUE
No speech event specified.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static StreamingRecognizeResponse.SpeechEventType
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.SpeechEventType>
internalGetValueMap()
static StreamingRecognizeResponse.SpeechEventType
valueOf(int value)
Deprecated.static StreamingRecognizeResponse.SpeechEventType
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static StreamingRecognizeResponse.SpeechEventType
valueOf(String name)
Returns the enum constant of this type with the specified name.static StreamingRecognizeResponse.SpeechEventType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SPEECH_EVENT_TYPE_UNSPECIFIED
public static final StreamingRecognizeResponse.SpeechEventType SPEECH_EVENT_TYPE_UNSPECIFIED
No speech event specified.
SPEECH_EVENT_TYPE_UNSPECIFIED = 0;
-
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 and will close the gRPC bidirectional stream. This event is only sent if there was a force cutoff due to silence being detected early. This event is only available through the `latest_short` [model][google.cloud.speech.v2.Recognizer.model].
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;
-
UNRECOGNIZED
public static final StreamingRecognizeResponse.SpeechEventType UNRECOGNIZED
-
-
Field Detail
-
SPEECH_EVENT_TYPE_UNSPECIFIED_VALUE
public static final int SPEECH_EVENT_TYPE_UNSPECIFIED_VALUE
No speech event specified.
SPEECH_EVENT_TYPE_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 and will close the gRPC bidirectional stream. This event is only sent if there was a force cutoff due to silence being detected early. This event is only available through the `latest_short` [model][google.cloud.speech.v2.Recognizer.model].
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
-
-
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 nameNullPointerException
- if the argument is null
-
getNumber
public final int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
- Specified by:
getNumber
in interfacecom.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 nameNullPointerException
- 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.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<StreamingRecognizeResponse.SpeechEventType> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptor
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForType
in interfacecom.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 nameNullPointerException
- if the argument is null
-
-