com.groupdocs.search.events

Enum SearchPhase

    • Enum Constant Detail

      • AliasSubstitution

        public static final SearchPhase AliasSubstitution

        The alias substitution.

      • KeyboardLayoutCorrection

        public static final SearchPhase KeyboardLayoutCorrection

        The keyboard layout correction.

      • SpellingCorrection

        public static final SearchPhase SpellingCorrection

        The spelling correction.

      • HomophoneSearch

        public static final SearchPhase HomophoneSearch

        The homophone search.

      • SynonymSearch

        public static final SearchPhase SynonymSearch

        The synonym search.

      • WordFormsSearch

        public static final SearchPhase WordFormsSearch

        The word forms search.

      • FuzzySearch

        public static final SearchPhase FuzzySearch

        The fuzzy search.

      • WildcardMatching

        public static final SearchPhase WildcardMatching

        The wildcard matching.

      • RegexMatching

        public static final SearchPhase RegexMatching

        The regex matching.

    • Method Detail

      • values

        public static SearchPhase[] 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 (SearchPhase c : SearchPhase.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static SearchPhase 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