Interface TranscriptNormalization.EntryOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TranscriptNormalization.Entry,TranscriptNormalization.Entry.Builder
- Enclosing class:
- TranscriptNormalization
public static interface TranscriptNormalization.EntryOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetCaseSensitive()Whether the search is case sensitive.StringgetReplace()What to replace with.com.google.protobuf.ByteStringgetReplaceBytes()What to replace with.StringgetSearch()What to replace.com.google.protobuf.ByteStringgetSearchBytes()What to replace.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSearch
String getSearch()
What to replace. Max length is 100 characters.
string search = 1;- Returns:
- The search.
-
getSearchBytes
com.google.protobuf.ByteString getSearchBytes()
What to replace. Max length is 100 characters.
string search = 1;- Returns:
- The bytes for search.
-
getReplace
String getReplace()
What to replace with. Max length is 100 characters.
string replace = 2;- Returns:
- The replace.
-
getReplaceBytes
com.google.protobuf.ByteString getReplaceBytes()
What to replace with. Max length is 100 characters.
string replace = 2;- Returns:
- The bytes for replace.
-
getCaseSensitive
boolean getCaseSensitive()
Whether the search is case sensitive.
bool case_sensitive = 3;- Returns:
- The caseSensitive.
-
-