Class MergeSkill

java.lang.Object
com.azure.search.documents.indexes.models.SearchIndexerSkill
com.azure.search.documents.indexes.models.MergeSkill

public final class MergeSkill extends SearchIndexerSkill
A skill for merging two or more strings into a single unified string, with an optional user-defined delimiter separating each component part.
  • Constructor Details

  • Method Details

    • getInsertPreTag

      public String getInsertPreTag()
      Get the insertPreTag property: The tag indicates the start of the merged text. By default, the tag is an empty space.
      Returns:
      the insertPreTag value.
    • setInsertPreTag

      public MergeSkill setInsertPreTag(String insertPreTag)
      Set the insertPreTag property: The tag indicates the start of the merged text. By default, the tag is an empty space.
      Parameters:
      insertPreTag - the insertPreTag value to set.
      Returns:
      the MergeSkill object itself.
    • getInsertPostTag

      public String getInsertPostTag()
      Get the insertPostTag property: The tag indicates the end of the merged text. By default, the tag is an empty space.
      Returns:
      the insertPostTag value.
    • setInsertPostTag

      public MergeSkill setInsertPostTag(String insertPostTag)
      Set the insertPostTag property: The tag indicates the end of the merged text. By default, the tag is an empty space.
      Parameters:
      insertPostTag - the insertPostTag value to set.
      Returns:
      the MergeSkill object itself.