Interface TranscriptNormalization.EntryOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean getCaseSensitive()
      Whether the search is case sensitive.
      String getReplace()
      What to replace with.
      com.google.protobuf.ByteString getReplaceBytes()
      What to replace with.
      String getSearch()
      What to replace.
      com.google.protobuf.ByteString getSearchBytes()
      What to replace.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • 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.