Interface LanguageIdentifier

All Superinterfaces:
BraveAPIConstant, ProvidedOption, SearchOption
All Known Implementing Classes:
SearchLanguage

public interface LanguageIdentifier extends ProvidedOption
An interface representing a language identifier.

Each language identifier has a BraveAPIConstant.value() method that is used to get the parameter value for the API requests.

  • Field Details

  • Method Details

    • toSearchOption

      SearchOptionCarrier<String> toSearchOption()
      Converts this language identifier to a SearchOptionCarrier that can be used to build a URL parameter.
      Specified by:
      toSearchOption in interface ProvidedOption
      Returns:
      a SearchOptionCarrier representing this identifier
    • urlParam

      @NotNull static @NotNull String urlParam(@NotNull @NotNull LanguageIdentifier languageIdentifier)
      Generates the URL parameter for this language identifier.

      The URL parameter has the format "search_lang=<value>", where "<value>" is the value of this identifier.

      Parameters:
      languageIdentifier - the identifier to generate the URL parameter for
      Returns:
      the URL parameter for the given identifier