Enum StopwordsList

java.lang.Object
java.lang.Enum<StopwordsList>
com.azure.search.documents.indexes.models.StopwordsList
All Implemented Interfaces:
Serializable, Comparable<StopwordsList>, java.lang.constant.Constable

public enum StopwordsList extends Enum<StopwordsList>
Identifies a predefined list of language-specific stopwords.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Selects the stopword list for Arabic.
    Selects the stopword list for Armenian.
    Selects the stopword list for Basque.
    Selects the stopword list for Portuguese (Brazil).
    Selects the stopword list for Bulgarian.
    Selects the stopword list for Catalan.
    Selects the stopword list for Czech.
    Selects the stopword list for Danish.
    Selects the stopword list for Dutch.
    Selects the stopword list for English.
    Selects the stopword list for Finnish.
    Selects the stopword list for French.
    Selects the stopword list for Galician.
    Selects the stopword list for German.
    Selects the stopword list for Greek.
    Selects the stopword list for Hindi.
    Selects the stopword list for Hungarian.
    Selects the stopword list for Indonesian.
    Selects the stopword list for Irish.
    Selects the stopword list for Italian.
    Selects the stopword list for Latvian.
    Selects the stopword list for Norwegian.
    Selects the stopword list for Persian.
    Selects the stopword list for Portuguese.
    Selects the stopword list for Romanian.
    Selects the stopword list for Russian.
    Selects the stopword list for Sorani.
    Selects the stopword list for Spanish.
    Selects the stopword list for Swedish.
    Selects the stopword list for Thai.
    Selects the stopword list for Turkish.
  • Method Summary

    Modifier and Type
    Method
    Description
    Parses a serialized value to a StopwordsList instance.
    Returns the enum constant of this type with the specified name.
    static StopwordsList[]
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • ARABIC

      public static final StopwordsList ARABIC
      Selects the stopword list for Arabic.
    • ARMENIAN

      public static final StopwordsList ARMENIAN
      Selects the stopword list for Armenian.
    • BASQUE

      public static final StopwordsList BASQUE
      Selects the stopword list for Basque.
    • BRAZILIAN

      public static final StopwordsList BRAZILIAN
      Selects the stopword list for Portuguese (Brazil).
    • BULGARIAN

      public static final StopwordsList BULGARIAN
      Selects the stopword list for Bulgarian.
    • CATALAN

      public static final StopwordsList CATALAN
      Selects the stopword list for Catalan.
    • CZECH

      public static final StopwordsList CZECH
      Selects the stopword list for Czech.
    • DANISH

      public static final StopwordsList DANISH
      Selects the stopword list for Danish.
    • DUTCH

      public static final StopwordsList DUTCH
      Selects the stopword list for Dutch.
    • ENGLISH

      public static final StopwordsList ENGLISH
      Selects the stopword list for English.
    • FINNISH

      public static final StopwordsList FINNISH
      Selects the stopword list for Finnish.
    • FRENCH

      public static final StopwordsList FRENCH
      Selects the stopword list for French.
    • GALICIAN

      public static final StopwordsList GALICIAN
      Selects the stopword list for Galician.
    • GERMAN

      public static final StopwordsList GERMAN
      Selects the stopword list for German.
    • GREEK

      public static final StopwordsList GREEK
      Selects the stopword list for Greek.
    • HINDI

      public static final StopwordsList HINDI
      Selects the stopword list for Hindi.
    • HUNGARIAN

      public static final StopwordsList HUNGARIAN
      Selects the stopword list for Hungarian.
    • INDONESIAN

      public static final StopwordsList INDONESIAN
      Selects the stopword list for Indonesian.
    • IRISH

      public static final StopwordsList IRISH
      Selects the stopword list for Irish.
    • ITALIAN

      public static final StopwordsList ITALIAN
      Selects the stopword list for Italian.
    • LATVIAN

      public static final StopwordsList LATVIAN
      Selects the stopword list for Latvian.
    • NORWEGIAN

      public static final StopwordsList NORWEGIAN
      Selects the stopword list for Norwegian.
    • PERSIAN

      public static final StopwordsList PERSIAN
      Selects the stopword list for Persian.
    • PORTUGUESE

      public static final StopwordsList PORTUGUESE
      Selects the stopword list for Portuguese.
    • ROMANIAN

      public static final StopwordsList ROMANIAN
      Selects the stopword list for Romanian.
    • RUSSIAN

      public static final StopwordsList RUSSIAN
      Selects the stopword list for Russian.
    • SORANI

      public static final StopwordsList SORANI
      Selects the stopword list for Sorani.
    • SPANISH

      public static final StopwordsList SPANISH
      Selects the stopword list for Spanish.
    • SWEDISH

      public static final StopwordsList SWEDISH
      Selects the stopword list for Swedish.
    • THAI

      public static final StopwordsList THAI
      Selects the stopword list for Thai.
    • TURKISH

      public static final StopwordsList TURKISH
      Selects the stopword list for Turkish.
  • Method Details

    • values

      public static StopwordsList[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static StopwordsList valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • fromString

      public static StopwordsList fromString(String value)
      Parses a serialized value to a StopwordsList instance.
      Parameters:
      value - the serialized value to parse.
      Returns:
      the parsed StopwordsList object, or null if unable to parse.
    • toString

      public String toString()
      Overrides:
      toString in class Enum<StopwordsList>