Enum StopwordsList

    • Enum Constant Detail

      • ARABIC

        public static final StopwordsList ARABIC
        Enum value arabic.
      • ARMENIAN

        public static final StopwordsList ARMENIAN
        Enum value armenian.
      • BASQUE

        public static final StopwordsList BASQUE
        Enum value basque.
      • BRAZILIAN

        public static final StopwordsList BRAZILIAN
        Enum value brazilian.
      • BULGARIAN

        public static final StopwordsList BULGARIAN
        Enum value bulgarian.
      • CATALAN

        public static final StopwordsList CATALAN
        Enum value catalan.
      • CZECH

        public static final StopwordsList CZECH
        Enum value czech.
      • DANISH

        public static final StopwordsList DANISH
        Enum value danish.
      • DUTCH

        public static final StopwordsList DUTCH
        Enum value dutch.
      • ENGLISH

        public static final StopwordsList ENGLISH
        Enum value english.
      • FINNISH

        public static final StopwordsList FINNISH
        Enum value finnish.
      • FRENCH

        public static final StopwordsList FRENCH
        Enum value french.
      • GALICIAN

        public static final StopwordsList GALICIAN
        Enum value galician.
      • GERMAN

        public static final StopwordsList GERMAN
        Enum value german.
      • GREEK

        public static final StopwordsList GREEK
        Enum value greek.
      • HINDI

        public static final StopwordsList HINDI
        Enum value hindi.
      • HUNGARIAN

        public static final StopwordsList HUNGARIAN
        Enum value hungarian.
      • INDONESIAN

        public static final StopwordsList INDONESIAN
        Enum value indonesian.
      • IRISH

        public static final StopwordsList IRISH
        Enum value irish.
      • ITALIAN

        public static final StopwordsList ITALIAN
        Enum value italian.
      • LATVIAN

        public static final StopwordsList LATVIAN
        Enum value latvian.
      • NORWEGIAN

        public static final StopwordsList NORWEGIAN
        Enum value norwegian.
      • PERSIAN

        public static final StopwordsList PERSIAN
        Enum value persian.
      • PORTUGUESE

        public static final StopwordsList PORTUGUESE
        Enum value portuguese.
      • ROMANIAN

        public static final StopwordsList ROMANIAN
        Enum value romanian.
      • RUSSIAN

        public static final StopwordsList RUSSIAN
        Enum value russian.
      • SORANI

        public static final StopwordsList SORANI
        Enum value sorani.
      • SPANISH

        public static final StopwordsList SPANISH
        Enum value spanish.
      • SWEDISH

        public static final StopwordsList SWEDISH
        Enum value swedish.
      • TURKISH

        public static final StopwordsList TURKISH
        Enum value turkish.
    • Method Detail

      • values

        public static StopwordsList[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (StopwordsList c : StopwordsList.values())
            System.out.println(c);
        
        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.