Interface TranscriptNormalizationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TranscriptNormalization
,TranscriptNormalization.Builder
public interface TranscriptNormalizationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TranscriptNormalization.Entry
getEntries(int index)
A list of replacement entries.int
getEntriesCount()
A list of replacement entries.List<TranscriptNormalization.Entry>
getEntriesList()
A list of replacement entries.TranscriptNormalization.EntryOrBuilder
getEntriesOrBuilder(int index)
A list of replacement entries.List<? extends TranscriptNormalization.EntryOrBuilder>
getEntriesOrBuilderList()
A list of replacement entries.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEntriesList
List<TranscriptNormalization.Entry> getEntriesList()
A list of replacement entries. We will perform replacement with one entry at a time. For example, the second entry in ["cat" => "dog", "mountain cat" => "mountain dog"] will never be applied because we will always process the first entry before it. At most 100 entries.
repeated .google.cloud.speech.v1p1beta1.TranscriptNormalization.Entry entries = 1;
-
getEntries
TranscriptNormalization.Entry getEntries(int index)
A list of replacement entries. We will perform replacement with one entry at a time. For example, the second entry in ["cat" => "dog", "mountain cat" => "mountain dog"] will never be applied because we will always process the first entry before it. At most 100 entries.
repeated .google.cloud.speech.v1p1beta1.TranscriptNormalization.Entry entries = 1;
-
getEntriesCount
int getEntriesCount()
A list of replacement entries. We will perform replacement with one entry at a time. For example, the second entry in ["cat" => "dog", "mountain cat" => "mountain dog"] will never be applied because we will always process the first entry before it. At most 100 entries.
repeated .google.cloud.speech.v1p1beta1.TranscriptNormalization.Entry entries = 1;
-
getEntriesOrBuilderList
List<? extends TranscriptNormalization.EntryOrBuilder> getEntriesOrBuilderList()
A list of replacement entries. We will perform replacement with one entry at a time. For example, the second entry in ["cat" => "dog", "mountain cat" => "mountain dog"] will never be applied because we will always process the first entry before it. At most 100 entries.
repeated .google.cloud.speech.v1p1beta1.TranscriptNormalization.Entry entries = 1;
-
getEntriesOrBuilder
TranscriptNormalization.EntryOrBuilder getEntriesOrBuilder(int index)
A list of replacement entries. We will perform replacement with one entry at a time. For example, the second entry in ["cat" => "dog", "mountain cat" => "mountain dog"] will never be applied because we will always process the first entry before it. At most 100 entries.
repeated .google.cloud.speech.v1p1beta1.TranscriptNormalization.Entry entries = 1;
-
-