CustomEntityLookupSkillLanguage.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.util.ExpandableStringEnum;
  9. import com.fasterxml.jackson.annotation.JsonCreator;
  10. import java.util.Collection;

  11. /** Defines values for CustomEntityLookupSkillLanguage. */
  12. public final class CustomEntityLookupSkillLanguage extends ExpandableStringEnum<CustomEntityLookupSkillLanguage> {
  13.     /** Static value da for CustomEntityLookupSkillLanguage. */
  14.     public static final CustomEntityLookupSkillLanguage DA = fromString("da");

  15.     /** Static value de for CustomEntityLookupSkillLanguage. */
  16.     public static final CustomEntityLookupSkillLanguage DE = fromString("de");

  17.     /** Static value en for CustomEntityLookupSkillLanguage. */
  18.     public static final CustomEntityLookupSkillLanguage EN = fromString("en");

  19.     /** Static value es for CustomEntityLookupSkillLanguage. */
  20.     public static final CustomEntityLookupSkillLanguage ES = fromString("es");

  21.     /** Static value fi for CustomEntityLookupSkillLanguage. */
  22.     public static final CustomEntityLookupSkillLanguage FI = fromString("fi");

  23.     /** Static value fr for CustomEntityLookupSkillLanguage. */
  24.     public static final CustomEntityLookupSkillLanguage FR = fromString("fr");

  25.     /** Static value it for CustomEntityLookupSkillLanguage. */
  26.     public static final CustomEntityLookupSkillLanguage IT = fromString("it");

  27.     /** Static value ko for CustomEntityLookupSkillLanguage. */
  28.     public static final CustomEntityLookupSkillLanguage KO = fromString("ko");

  29.     /** Static value pt for CustomEntityLookupSkillLanguage. */
  30.     public static final CustomEntityLookupSkillLanguage PT = fromString("pt");

  31.     /**
  32.      * Creates or finds a CustomEntityLookupSkillLanguage from its string representation.
  33.      *
  34.      * @param name a name to look for.
  35.      * @return the corresponding CustomEntityLookupSkillLanguage.
  36.      */
  37.     @JsonCreator
  38.     public static CustomEntityLookupSkillLanguage fromString(String name) {
  39.         return fromString(name, CustomEntityLookupSkillLanguage.class);
  40.     }

  41.     /** @return known CustomEntityLookupSkillLanguage values. */
  42.     public static Collection<CustomEntityLookupSkillLanguage> values() {
  43.         return values(CustomEntityLookupSkillLanguage.class);
  44.     }
  45. }