Send feedback
Class StreamingRecognitionConfig (4.53.0)
bookmark_border bookmark
Stay organized with collections
Save and categorize content based on your preferences.
Version latest keyboard_arrow_down
public final class StreamingRecognitionConfig extends GeneratedMessageV3 implements StreamingRecognitionConfigOrBuilder
Provides information to the recognizer that specifies how to process the
request.
Protobuf type google.cloud.speech.v1p1beta1.StreamingRecognitionConfig
Inherited Members
com.google.protobuf.GeneratedMessageV3.<ListT>makeMutableCopy(ListT)
com.google.protobuf.GeneratedMessageV3.<ListT>makeMutableCopy(ListT,int)
com.google.protobuf.GeneratedMessageV3.<T>emptyList(java.lang.Class<T>)
com.google.protobuf.GeneratedMessageV3.internalGetMapFieldReflection(int)
Static Fields
CONFIG_FIELD_NUMBER
public static final int CONFIG_FIELD_NUMBER
Field Value
Type
Description
int
ENABLE_VOICE_ACTIVITY_EVENTS_FIELD_NUMBER
public static final int ENABLE_VOICE_ACTIVITY_EVENTS_FIELD_NUMBER
Field Value
Type
Description
int
INTERIM_RESULTS_FIELD_NUMBER
public static final int INTERIM_RESULTS_FIELD_NUMBER
Field Value
Type
Description
int
SINGLE_UTTERANCE_FIELD_NUMBER
public static final int SINGLE_UTTERANCE_FIELD_NUMBER
Field Value
Type
Description
int
VOICE_ACTIVITY_TIMEOUT_FIELD_NUMBER
public static final int VOICE_ACTIVITY_TIMEOUT_FIELD_NUMBER
Field Value
Type
Description
int
Static Methods
getDefaultInstance()
public static StreamingRecognitionConfig getDefaultInstance ()
getDescriptor()
public static final Descriptors . Descriptor getDescriptor ()
newBuilder()
public static StreamingRecognitionConfig . Builder newBuilder ()
newBuilder(StreamingRecognitionConfig prototype)
public static StreamingRecognitionConfig . Builder newBuilder ( StreamingRecognitionConfig prototype )
public static StreamingRecognitionConfig parseDelimitedFrom ( InputStream input )
public static StreamingRecognitionConfig parseDelimitedFrom ( InputStream input , ExtensionRegistryLite extensionRegistry )
parseFrom(byte[] data)
public static StreamingRecognitionConfig parseFrom ( byte [] data )
Parameter
Name
Description
data
byte []
parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static StreamingRecognitionConfig parseFrom ( byte [] data , ExtensionRegistryLite extensionRegistry )
parseFrom(ByteString data)
public static StreamingRecognitionConfig parseFrom ( ByteString data )
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static StreamingRecognitionConfig parseFrom ( ByteString data , ExtensionRegistryLite extensionRegistry )
public static StreamingRecognitionConfig parseFrom ( CodedInputStream input )
public static StreamingRecognitionConfig parseFrom ( CodedInputStream input , ExtensionRegistryLite extensionRegistry )
public static StreamingRecognitionConfig parseFrom ( InputStream input )
public static StreamingRecognitionConfig parseFrom ( InputStream input , ExtensionRegistryLite extensionRegistry )
parseFrom(ByteBuffer data)
public static StreamingRecognitionConfig parseFrom ( ByteBuffer data )
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static StreamingRecognitionConfig parseFrom ( ByteBuffer data , ExtensionRegistryLite extensionRegistry )
parser()
public static Parser<StreamingRecognitionConfig> parser ()
Methods
equals(Object obj)
public boolean equals ( Object obj )
Parameter
Name
Description
obj
Object
Overrides
getConfig()
public RecognitionConfig getConfig ()
Required. Provides information to the recognizer that specifies how to
process the request.
.google.cloud.speech.v1p1beta1.RecognitionConfig config = 1 [(.google.api.field_behavior) = REQUIRED];
getConfigOrBuilder()
public RecognitionConfigOrBuilder getConfigOrBuilder ()
Required. Provides information to the recognizer that specifies how to
process the request.
.google.cloud.speech.v1p1beta1.RecognitionConfig config = 1 [(.google.api.field_behavior) = REQUIRED];
getDefaultInstanceForType()
public StreamingRecognitionConfig getDefaultInstanceForType ()
getEnableVoiceActivityEvents()
public boolean getEnableVoiceActivityEvents ()
If true
, responses with voice activity speech events will be returned as
they are detected.
bool enable_voice_activity_events = 5;
Returns
Type
Description
boolean
The enableVoiceActivityEvents.
getInterimResults()
public boolean getInterimResults ()
If true
, interim results (tentative hypotheses) may be
returned as they become available (these interim results are indicated with
the is_final=false
flag).
If false
or omitted, only is_final=true
result(s) are returned.
bool interim_results = 3;
Returns
Type
Description
boolean
The interimResults.
getParserForType()
public Parser<StreamingRecognitionConfig> getParserForType ()
Overrides
getSerializedSize()
public int getSerializedSize ()
Returns
Type
Description
int
Overrides
getSingleUtterance()
public boolean getSingleUtterance ()
If false
or omitted, the recognizer will perform continuous
recognition (continuing to wait for and process audio even if the user
pauses speaking) until the client closes the input stream (gRPC API) or
until the maximum time limit has been reached. May return multiple
StreamingRecognitionResult
s with the is_final
flag set to true
.
If true
, the recognizer will detect a single spoken utterance. When it
detects that the user has paused or stopped speaking, it will return an
END_OF_SINGLE_UTTERANCE
event and cease recognition. It will return no
more than one StreamingRecognitionResult
with the is_final
flag set to
true
.
The single_utterance
field can only be used with specified models,
otherwise an error is thrown. The model
field in [RecognitionConfig
][]
must be set to:
command_and_search
phone_call
AND additional field useEnhanced
=true
The model
field is left undefined. In this case the API auto-selects
a model based on any other parameters that you set in
RecognitionConfig
.
bool single_utterance = 2;
Returns
Type
Description
boolean
The singleUtterance.
getVoiceActivityTimeout()
public StreamingRecognitionConfig . VoiceActivityTimeout getVoiceActivityTimeout ()
If set, the server will automatically close the stream after the specified
duration has elapsed after the last VOICE_ACTIVITY speech event has been
sent. The field voice_activity_events
must also be set to true.
.google.cloud.speech.v1p1beta1.StreamingRecognitionConfig.VoiceActivityTimeout voice_activity_timeout = 6;
getVoiceActivityTimeoutOrBuilder()
public StreamingRecognitionConfig . VoiceActivityTimeoutOrBuilder getVoiceActivityTimeoutOrBuilder ()
If set, the server will automatically close the stream after the specified
duration has elapsed after the last VOICE_ACTIVITY speech event has been
sent. The field voice_activity_events
must also be set to true.
.google.cloud.speech.v1p1beta1.StreamingRecognitionConfig.VoiceActivityTimeout voice_activity_timeout = 6;
hasConfig()
public boolean hasConfig ()
Required. Provides information to the recognizer that specifies how to
process the request.
.google.cloud.speech.v1p1beta1.RecognitionConfig config = 1 [(.google.api.field_behavior) = REQUIRED];
Returns
Type
Description
boolean
Whether the config field is set.
hasVoiceActivityTimeout()
public boolean hasVoiceActivityTimeout ()
If set, the server will automatically close the stream after the specified
duration has elapsed after the last VOICE_ACTIVITY speech event has been
sent. The field voice_activity_events
must also be set to true.
.google.cloud.speech.v1p1beta1.StreamingRecognitionConfig.VoiceActivityTimeout voice_activity_timeout = 6;
Returns
Type
Description
boolean
Whether the voiceActivityTimeout field is set.
hashCode()
Returns
Type
Description
int
Overrides
internalGetFieldAccessorTable()
protected GeneratedMessageV3 . FieldAccessorTable internalGetFieldAccessorTable ()
Overrides
isInitialized()
public final boolean isInitialized ()
Overrides
newBuilderForType()
public StreamingRecognitionConfig . Builder newBuilderForType ()
newBuilderForType(GeneratedMessageV3.BuilderParent parent)
protected StreamingRecognitionConfig . Builder newBuilderForType ( GeneratedMessageV3 . BuilderParent parent )
Overrides
newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
protected Object newInstance ( GeneratedMessageV3 . UnusedPrivateParameter unused )
Returns
Type
Description
Object
Overrides
toBuilder()
public StreamingRecognitionConfig . Builder toBuilder ()
writeTo(CodedOutputStream output)
public void writeTo ( CodedOutputStream output )
Overrides
Send feedback
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-02-22 UTC.
Need to tell us more?
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-22 UTC."],[],[]]