SentimentSkillLanguage.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 SentimentSkillLanguage. */
  12. public final class SentimentSkillLanguage extends ExpandableStringEnum<SentimentSkillLanguage> {
  13.     /** Static value da for SentimentSkillLanguage. */
  14.     public static final SentimentSkillLanguage DA = fromString("da");

  15.     /** Static value nl for SentimentSkillLanguage. */
  16.     public static final SentimentSkillLanguage NL = fromString("nl");

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

  19.     /** Static value fi for SentimentSkillLanguage. */
  20.     public static final SentimentSkillLanguage FI = fromString("fi");

  21.     /** Static value fr for SentimentSkillLanguage. */
  22.     public static final SentimentSkillLanguage FR = fromString("fr");

  23.     /** Static value de for SentimentSkillLanguage. */
  24.     public static final SentimentSkillLanguage DE = fromString("de");

  25.     /** Static value el for SentimentSkillLanguage. */
  26.     public static final SentimentSkillLanguage EL = fromString("el");

  27.     /** Static value it for SentimentSkillLanguage. */
  28.     public static final SentimentSkillLanguage IT = fromString("it");

  29.     /** Static value no for SentimentSkillLanguage. */
  30.     public static final SentimentSkillLanguage NO = fromString("no");

  31.     /** Static value pl for SentimentSkillLanguage. */
  32.     public static final SentimentSkillLanguage PL = fromString("pl");

  33.     /** Static value pt-PT for SentimentSkillLanguage. */
  34.     public static final SentimentSkillLanguage PT_PT = fromString("pt-PT");

  35.     /** Static value ru for SentimentSkillLanguage. */
  36.     public static final SentimentSkillLanguage RU = fromString("ru");

  37.     /** Static value es for SentimentSkillLanguage. */
  38.     public static final SentimentSkillLanguage ES = fromString("es");

  39.     /** Static value sv for SentimentSkillLanguage. */
  40.     public static final SentimentSkillLanguage SV = fromString("sv");

  41.     /** Static value tr for SentimentSkillLanguage. */
  42.     public static final SentimentSkillLanguage TR = fromString("tr");

  43.     /**
  44.      * Creates or finds a SentimentSkillLanguage from its string representation.
  45.      *
  46.      * @param name a name to look for.
  47.      * @return the corresponding SentimentSkillLanguage.
  48.      */
  49.     @JsonCreator
  50.     public static SentimentSkillLanguage fromString(String name) {
  51.         return fromString(name, SentimentSkillLanguage.class);
  52.     }

  53.     /** @return known SentimentSkillLanguage values. */
  54.     public static Collection<SentimentSkillLanguage> values() {
  55.         return values(SentimentSkillLanguage.class);
  56.     }
  57. }