Package net.ygbstudio.jbrave.api.options
Enum Class MarketLocale
- All Implemented Interfaces:
Serializable,Comparable<MarketLocale>,Constable,BraveAPIConstant,RegionLocaleIdentifier,ProvidedOption,SearchOption
Enumeration representing a market locale supported by the Brave Search API.
This enumeration implements the RegionLocaleIdentifier interface, providing methods
for URL parameter generation.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Field Summary
Fields inherited from interface net.ygbstudio.jbrave.core.domain.BraveAPIConstant
SEARCH_API_BASEFields inherited from interface net.ygbstudio.jbrave.core.domain.ProvidedOption
UNITSFields inherited from interface net.ygbstudio.jbrave.core.domain.provided.RegionLocaleIdentifier
URL_PARAM -
Method Summary
Modifier and TypeMethodDescription@NotNull @Unmodifiable SearchOptionCarrier<String> Converts this region locale identifier to aSearchOptionCarrierthat can be used to build a URL parameter.@NotNull StringurlParam()Returns the URL parameter associated with this constant.value()Returns the value of the constant.static MarketLocaleReturns the enum constant of this class with the specified name.static MarketLocale[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ARGENTINA
-
AUSTRALIA
-
AUSTRIA
-
BELGIUM_DUTCH
-
BELGIUM_FRENCH
-
BRAZIL
-
CANADA_ENGLISH
-
CANADA_FRENCH
-
CHILE
-
DENMARK
-
FINLAND
-
FRANCE
-
GERMANY
-
GREECE
-
HONG_KONG
-
INDIA
-
INDONESIA
-
ITALY
-
JAPAN
-
KOREA
-
MALAYSIA
-
MEXICO
-
NETHERLANDS
-
NEW_ZEALAND
-
NORWAY
-
CHINA
-
POLAND
-
PHILIPPINES
-
RUSSIA
-
SOUTH_AFRICA
-
SPAIN
-
SWEDEN
-
SWITZERLAND_FRENCH
-
SWITZERLAND_GERMAN
-
TAIWAN
-
TURKEY
-
UNITED_KINGDOM
-
UNITED_STATES_ENGLISH
-
UNITED_STATES_SPANISH
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
value
Description copied from interface:BraveAPIConstantReturns the value of the constant. Must be implemented by the enum constants.- Specified by:
valuein interfaceBraveAPIConstant- Returns:
- the value of the constant
-
urlParam
Description copied from interface:BraveAPIConstantReturns the URL parameter associated with this constant. It can be implemented by default at the interface level with the value of the parameter.This method is used to generate the URL parameter for the API requests and represents a unit of
option/parameterName/parameterConstant + "=" + parameterValue.A
parameterValuemay be provided by the API or require that the client provides it. By default, all options/parameters names are provided by the API.- Specified by:
urlParamin interfaceBraveAPIConstant- Returns:
- the URL parameter associated with this constant
- See Also:
-
toSearchOption
@Contract(" -> new") @NotNull public @NotNull @Unmodifiable SearchOptionCarrier<String> toSearchOption()Description copied from interface:RegionLocaleIdentifierConverts this region locale identifier to aSearchOptionCarrierthat can be used to build a URL parameter.- Specified by:
toSearchOptionin interfaceProvidedOption- Specified by:
toSearchOptionin interfaceRegionLocaleIdentifier- Returns:
- a
SearchOptionCarrierrepresenting this identifier
-