CustomEntity.java

  1. // Copyright (c) Microsoft Corporation. All rights reserved.
  2. // Licensed under the MIT License.
  3. //
  4. // Code generated by Microsoft (R) AutoRest Code Generator.
  5. // Changes may cause incorrect behavior and will be lost if the code is
  6. // regenerated.

  7. package com.azure.search.documents.indexes.models;

  8. import com.azure.core.annotation.Fluent;
  9. import com.fasterxml.jackson.annotation.JsonCreator;
  10. import com.fasterxml.jackson.annotation.JsonProperty;
  11. import java.util.List;

  12. /** An object that contains information about the matches that were found, and related metadata. */
  13. @Fluent
  14. public final class CustomEntity {
  15.     /*
  16.      * The top-level entity descriptor. Matches in the skill output will be
  17.      * grouped by this name, and it should represent the "normalized" form of
  18.      * the text being found.
  19.      */
  20.     @JsonProperty(value = "name", required = true)
  21.     private String name;

  22.     /*
  23.      * This field can be used as a passthrough for custom metadata about the
  24.      * matched text(s). The value of this field will appear with every match of
  25.      * its entity in the skill output.
  26.      */
  27.     @JsonProperty(value = "description")
  28.     private String description;

  29.     /*
  30.      * This field can be used as a passthrough for custom metadata about the
  31.      * matched text(s). The value of this field will appear with every match of
  32.      * its entity in the skill output.
  33.      */
  34.     @JsonProperty(value = "type")
  35.     private String type;

  36.     /*
  37.      * This field can be used as a passthrough for custom metadata about the
  38.      * matched text(s). The value of this field will appear with every match of
  39.      * its entity in the skill output.
  40.      */
  41.     @JsonProperty(value = "subtype")
  42.     private String subtype;

  43.     /*
  44.      * This field can be used as a passthrough for custom metadata about the
  45.      * matched text(s). The value of this field will appear with every match of
  46.      * its entity in the skill output.
  47.      */
  48.     @JsonProperty(value = "id")
  49.     private String id;

  50.     /*
  51.      * Defaults to false. Boolean value denoting whether comparisons with the
  52.      * entity name should be sensitive to character casing. Sample case
  53.      * insensitive matches of "Microsoft" could be: microsoft, microSoft,
  54.      * MICROSOFT.
  55.      */
  56.     @JsonProperty(value = "caseSensitive")
  57.     private Boolean caseSensitive;

  58.     /*
  59.      * Defaults to false. Boolean value denoting whether comparisons with the
  60.      * entity name should be sensitive to accent.
  61.      */
  62.     @JsonProperty(value = "accentSensitive")
  63.     private Boolean accentSensitive;

  64.     /*
  65.      * Defaults to 0. Maximum value of 5. Denotes the acceptable number of
  66.      * divergent characters that would still constitute a match with the entity
  67.      * name. The smallest possible fuzziness for any given match is returned.
  68.      * For instance, if the edit distance is set to 3, "Windows10" would still
  69.      * match "Windows", "Windows10" and "Windows 7". When case sensitivity is
  70.      * set to false, case differences do NOT count towards fuzziness tolerance,
  71.      * but otherwise do.
  72.      */
  73.     @JsonProperty(value = "fuzzyEditDistance")
  74.     private Integer fuzzyEditDistance;

  75.     /*
  76.      * Changes the default case sensitivity value for this entity. It be used
  77.      * to change the default value of all aliases caseSensitive values.
  78.      */
  79.     @JsonProperty(value = "defaultCaseSensitive")
  80.     private Boolean defaultCaseSensitive;

  81.     /*
  82.      * Changes the default accent sensitivity value for this entity. It be used
  83.      * to change the default value of all aliases accentSensitive values.
  84.      */
  85.     @JsonProperty(value = "defaultAccentSensitive")
  86.     private Boolean defaultAccentSensitive;

  87.     /*
  88.      * Changes the default fuzzy edit distance value for this entity. It can be
  89.      * used to change the default value of all aliases fuzzyEditDistance
  90.      * values.
  91.      */
  92.     @JsonProperty(value = "defaultFuzzyEditDistance")
  93.     private Integer defaultFuzzyEditDistance;

  94.     /*
  95.      * An array of complex objects that can be used to specify alternative
  96.      * spellings or synonyms to the root entity name.
  97.      */
  98.     @JsonProperty(value = "aliases")
  99.     private List<CustomEntityAlias> aliases;

  100.     /**
  101.      * Creates an instance of CustomEntity class.
  102.      *
  103.      * @param name the name value to set.
  104.      */
  105.     @JsonCreator
  106.     public CustomEntity(@JsonProperty(value = "name", required = true) String name) {
  107.         this.name = name;
  108.     }

  109.     /**
  110.      * Get the name property: The top-level entity descriptor. Matches in the skill output will be grouped by this name,
  111.      * and it should represent the "normalized" form of the text being found.
  112.      *
  113.      * @return the name value.
  114.      */
  115.     public String getName() {
  116.         return this.name;
  117.     }

  118.     /**
  119.      * Get the description property: This field can be used as a passthrough for custom metadata about the matched
  120.      * text(s). The value of this field will appear with every match of its entity in the skill output.
  121.      *
  122.      * @return the description value.
  123.      */
  124.     public String getDescription() {
  125.         return this.description;
  126.     }

  127.     /**
  128.      * Set the description property: This field can be used as a passthrough for custom metadata about the matched
  129.      * text(s). The value of this field will appear with every match of its entity in the skill output.
  130.      *
  131.      * @param description the description value to set.
  132.      * @return the CustomEntity object itself.
  133.      */
  134.     public CustomEntity setDescription(String description) {
  135.         this.description = description;
  136.         return this;
  137.     }

  138.     /**
  139.      * Get the type property: This field can be used as a passthrough for custom metadata about the matched text(s). The
  140.      * value of this field will appear with every match of its entity in the skill output.
  141.      *
  142.      * @return the type value.
  143.      */
  144.     public String getType() {
  145.         return this.type;
  146.     }

  147.     /**
  148.      * Set the type property: This field can be used as a passthrough for custom metadata about the matched text(s). The
  149.      * value of this field will appear with every match of its entity in the skill output.
  150.      *
  151.      * @param type the type value to set.
  152.      * @return the CustomEntity object itself.
  153.      */
  154.     public CustomEntity setType(String type) {
  155.         this.type = type;
  156.         return this;
  157.     }

  158.     /**
  159.      * Get the subtype property: This field can be used as a passthrough for custom metadata about the matched text(s).
  160.      * The value of this field will appear with every match of its entity in the skill output.
  161.      *
  162.      * @return the subtype value.
  163.      */
  164.     public String getSubtype() {
  165.         return this.subtype;
  166.     }

  167.     /**
  168.      * Set the subtype property: This field can be used as a passthrough for custom metadata about the matched text(s).
  169.      * The value of this field will appear with every match of its entity in the skill output.
  170.      *
  171.      * @param subtype the subtype value to set.
  172.      * @return the CustomEntity object itself.
  173.      */
  174.     public CustomEntity setSubtype(String subtype) {
  175.         this.subtype = subtype;
  176.         return this;
  177.     }

  178.     /**
  179.      * Get the id property: This field can be used as a passthrough for custom metadata about the matched text(s). The
  180.      * value of this field will appear with every match of its entity in the skill output.
  181.      *
  182.      * @return the id value.
  183.      */
  184.     public String getId() {
  185.         return this.id;
  186.     }

  187.     /**
  188.      * Set the id property: This field can be used as a passthrough for custom metadata about the matched text(s). The
  189.      * value of this field will appear with every match of its entity in the skill output.
  190.      *
  191.      * @param id the id value to set.
  192.      * @return the CustomEntity object itself.
  193.      */
  194.     public CustomEntity setId(String id) {
  195.         this.id = id;
  196.         return this;
  197.     }

  198.     /**
  199.      * Get the caseSensitive property: Defaults to false. Boolean value denoting whether comparisons with the entity
  200.      * name should be sensitive to character casing. Sample case insensitive matches of "Microsoft" could be: microsoft,
  201.      * microSoft, MICROSOFT.
  202.      *
  203.      * @return the caseSensitive value.
  204.      */
  205.     public Boolean isCaseSensitive() {
  206.         return this.caseSensitive;
  207.     }

  208.     /**
  209.      * Set the caseSensitive property: Defaults to false. Boolean value denoting whether comparisons with the entity
  210.      * name should be sensitive to character casing. Sample case insensitive matches of "Microsoft" could be: microsoft,
  211.      * microSoft, MICROSOFT.
  212.      *
  213.      * @param caseSensitive the caseSensitive value to set.
  214.      * @return the CustomEntity object itself.
  215.      */
  216.     public CustomEntity setCaseSensitive(Boolean caseSensitive) {
  217.         this.caseSensitive = caseSensitive;
  218.         return this;
  219.     }

  220.     /**
  221.      * Get the accentSensitive property: Defaults to false. Boolean value denoting whether comparisons with the entity
  222.      * name should be sensitive to accent.
  223.      *
  224.      * @return the accentSensitive value.
  225.      */
  226.     public Boolean isAccentSensitive() {
  227.         return this.accentSensitive;
  228.     }

  229.     /**
  230.      * Set the accentSensitive property: Defaults to false. Boolean value denoting whether comparisons with the entity
  231.      * name should be sensitive to accent.
  232.      *
  233.      * @param accentSensitive the accentSensitive value to set.
  234.      * @return the CustomEntity object itself.
  235.      */
  236.     public CustomEntity setAccentSensitive(Boolean accentSensitive) {
  237.         this.accentSensitive = accentSensitive;
  238.         return this;
  239.     }

  240.     /**
  241.      * Get the fuzzyEditDistance property: Defaults to 0. Maximum value of 5. Denotes the acceptable number of divergent
  242.      * characters that would still constitute a match with the entity name. The smallest possible fuzziness for any
  243.      * given match is returned. For instance, if the edit distance is set to 3, "Windows10" would still match "Windows",
  244.      * "Windows10" and "Windows 7". When case sensitivity is set to false, case differences do NOT count towards
  245.      * fuzziness tolerance, but otherwise do.
  246.      *
  247.      * @return the fuzzyEditDistance value.
  248.      */
  249.     public Integer getFuzzyEditDistance() {
  250.         return this.fuzzyEditDistance;
  251.     }

  252.     /**
  253.      * Set the fuzzyEditDistance property: Defaults to 0. Maximum value of 5. Denotes the acceptable number of divergent
  254.      * characters that would still constitute a match with the entity name. The smallest possible fuzziness for any
  255.      * given match is returned. For instance, if the edit distance is set to 3, "Windows10" would still match "Windows",
  256.      * "Windows10" and "Windows 7". When case sensitivity is set to false, case differences do NOT count towards
  257.      * fuzziness tolerance, but otherwise do.
  258.      *
  259.      * @param fuzzyEditDistance the fuzzyEditDistance value to set.
  260.      * @return the CustomEntity object itself.
  261.      */
  262.     public CustomEntity setFuzzyEditDistance(Integer fuzzyEditDistance) {
  263.         this.fuzzyEditDistance = fuzzyEditDistance;
  264.         return this;
  265.     }

  266.     /**
  267.      * Get the defaultCaseSensitive property: Changes the default case sensitivity value for this entity. It be used to
  268.      * change the default value of all aliases caseSensitive values.
  269.      *
  270.      * @return the defaultCaseSensitive value.
  271.      */
  272.     public Boolean isDefaultCaseSensitive() {
  273.         return this.defaultCaseSensitive;
  274.     }

  275.     /**
  276.      * Set the defaultCaseSensitive property: Changes the default case sensitivity value for this entity. It be used to
  277.      * change the default value of all aliases caseSensitive values.
  278.      *
  279.      * @param defaultCaseSensitive the defaultCaseSensitive value to set.
  280.      * @return the CustomEntity object itself.
  281.      */
  282.     public CustomEntity setDefaultCaseSensitive(Boolean defaultCaseSensitive) {
  283.         this.defaultCaseSensitive = defaultCaseSensitive;
  284.         return this;
  285.     }

  286.     /**
  287.      * Get the defaultAccentSensitive property: Changes the default accent sensitivity value for this entity. It be used
  288.      * to change the default value of all aliases accentSensitive values.
  289.      *
  290.      * @return the defaultAccentSensitive value.
  291.      */
  292.     public Boolean isDefaultAccentSensitive() {
  293.         return this.defaultAccentSensitive;
  294.     }

  295.     /**
  296.      * Set the defaultAccentSensitive property: Changes the default accent sensitivity value for this entity. It be used
  297.      * to change the default value of all aliases accentSensitive values.
  298.      *
  299.      * @param defaultAccentSensitive the defaultAccentSensitive value to set.
  300.      * @return the CustomEntity object itself.
  301.      */
  302.     public CustomEntity setDefaultAccentSensitive(Boolean defaultAccentSensitive) {
  303.         this.defaultAccentSensitive = defaultAccentSensitive;
  304.         return this;
  305.     }

  306.     /**
  307.      * Get the defaultFuzzyEditDistance property: Changes the default fuzzy edit distance value for this entity. It can
  308.      * be used to change the default value of all aliases fuzzyEditDistance values.
  309.      *
  310.      * @return the defaultFuzzyEditDistance value.
  311.      */
  312.     public Integer getDefaultFuzzyEditDistance() {
  313.         return this.defaultFuzzyEditDistance;
  314.     }

  315.     /**
  316.      * Set the defaultFuzzyEditDistance property: Changes the default fuzzy edit distance value for this entity. It can
  317.      * be used to change the default value of all aliases fuzzyEditDistance values.
  318.      *
  319.      * @param defaultFuzzyEditDistance the defaultFuzzyEditDistance value to set.
  320.      * @return the CustomEntity object itself.
  321.      */
  322.     public CustomEntity setDefaultFuzzyEditDistance(Integer defaultFuzzyEditDistance) {
  323.         this.defaultFuzzyEditDistance = defaultFuzzyEditDistance;
  324.         return this;
  325.     }

  326.     /**
  327.      * Get the aliases property: An array of complex objects that can be used to specify alternative spellings or
  328.      * synonyms to the root entity name.
  329.      *
  330.      * @return the aliases value.
  331.      */
  332.     public List<CustomEntityAlias> getAliases() {
  333.         return this.aliases;
  334.     }

  335.     /**
  336.      * Set the aliases property: An array of complex objects that can be used to specify alternative spellings or
  337.      * synonyms to the root entity name.
  338.      *
  339.      * @param aliases the aliases value to set.
  340.      * @return the CustomEntity object itself.
  341.      */
  342.     public CustomEntity setAliases(List<CustomEntityAlias> aliases) {
  343.         this.aliases = aliases;
  344.         return this;
  345.     }
  346. }