Package com.google.cloud.speech.v2
Enum RecognitionFeatures.MultiChannelMode
- java.lang.Object
-
- java.lang.Enum<RecognitionFeatures.MultiChannelMode>
-
- com.google.cloud.speech.v2.RecognitionFeatures.MultiChannelMode
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,com.google.protobuf.ProtocolMessageEnum,Serializable,Comparable<RecognitionFeatures.MultiChannelMode>
- Enclosing class:
- RecognitionFeatures
public static enum RecognitionFeatures.MultiChannelMode extends Enum<RecognitionFeatures.MultiChannelMode> implements com.google.protobuf.ProtocolMessageEnum
Options for how to recognize multi-channel audio.
Protobuf enumgoogle.cloud.speech.v2.RecognitionFeatures.MultiChannelMode
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MULTI_CHANNEL_MODE_UNSPECIFIEDDefault value for the multi-channel mode.SEPARATE_RECOGNITION_PER_CHANNELIf selected, each channel in the provided audio is transcribed independently.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static intMULTI_CHANNEL_MODE_UNSPECIFIED_VALUEDefault value for the multi-channel mode.static intSEPARATE_RECOGNITION_PER_CHANNEL_VALUEIf selected, each channel in the provided audio is transcribed independently.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static RecognitionFeatures.MultiChannelModeforNumber(int value)static com.google.protobuf.Descriptors.EnumDescriptorgetDescriptor()com.google.protobuf.Descriptors.EnumDescriptorgetDescriptorForType()intgetNumber()com.google.protobuf.Descriptors.EnumValueDescriptorgetValueDescriptor()static com.google.protobuf.Internal.EnumLiteMap<RecognitionFeatures.MultiChannelMode>internalGetValueMap()static RecognitionFeatures.MultiChannelModevalueOf(int value)Deprecated.static RecognitionFeatures.MultiChannelModevalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static RecognitionFeatures.MultiChannelModevalueOf(String name)Returns the enum constant of this type with the specified name.static RecognitionFeatures.MultiChannelMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MULTI_CHANNEL_MODE_UNSPECIFIED
public static final RecognitionFeatures.MultiChannelMode MULTI_CHANNEL_MODE_UNSPECIFIED
Default value for the multi-channel mode. If the audio contains multiple channels, only the first channel will be transcribed; other channels will be ignored.
MULTI_CHANNEL_MODE_UNSPECIFIED = 0;
-
SEPARATE_RECOGNITION_PER_CHANNEL
public static final RecognitionFeatures.MultiChannelMode SEPARATE_RECOGNITION_PER_CHANNEL
If selected, each channel in the provided audio is transcribed independently. This cannot be selected if the selected [model][google.cloud.speech.v2.Recognizer.model] is `latest_short`.
SEPARATE_RECOGNITION_PER_CHANNEL = 1;
-
UNRECOGNIZED
public static final RecognitionFeatures.MultiChannelMode UNRECOGNIZED
-
-
Field Detail
-
MULTI_CHANNEL_MODE_UNSPECIFIED_VALUE
public static final int MULTI_CHANNEL_MODE_UNSPECIFIED_VALUE
Default value for the multi-channel mode. If the audio contains multiple channels, only the first channel will be transcribed; other channels will be ignored.
MULTI_CHANNEL_MODE_UNSPECIFIED = 0;- See Also:
- Constant Field Values
-
SEPARATE_RECOGNITION_PER_CHANNEL_VALUE
public static final int SEPARATE_RECOGNITION_PER_CHANNEL_VALUE
If selected, each channel in the provided audio is transcribed independently. This cannot be selected if the selected [model][google.cloud.speech.v2.Recognizer.model] is `latest_short`.
SEPARATE_RECOGNITION_PER_CHANNEL = 1;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static RecognitionFeatures.MultiChannelMode[] 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 (RecognitionFeatures.MultiChannelMode c : RecognitionFeatures.MultiChannelMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RecognitionFeatures.MultiChannelMode 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:
getNumberin interfacecom.google.protobuf.Internal.EnumLite- Specified by:
getNumberin interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static RecognitionFeatures.MultiChannelMode 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 RecognitionFeatures.MultiChannelMode 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<RecognitionFeatures.MultiChannelMode> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptorin interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForTypein interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static RecognitionFeatures.MultiChannelMode 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
-
-