Uses of Enum Class
com.bluebell.greenhouse.platform.enums.system.Country
Packages that use Country
Package
Description
Contains core enums used for system operations.
Contains classes that implement DTO representations of locale-related data.
Contains exchange registry and exchange-related non-entity models.
Contains the data-access layer for
MarketEvents.Contains the service layer for locale and locale-derived lookup data.
Contains the service layer for
MarketEvents.Contains
Exchange-specific
entity specifications.-
Uses of Country in com.bluebell.greenhouse.platform.enums.system
Subclasses with type arguments of type Country in com.bluebell.greenhouse.platform.enums.systemClasses in com.bluebell.greenhouse.platform.enums.system that implement interfaces with type arguments of type CountryMethods in com.bluebell.greenhouse.platform.enums.system that return CountryModifier and TypeMethodDescriptionstatic CountryCountry.getByCurrencyCode(String code) Converts a currency iso code to aCountry.static CountryCountry.getByIsoCode(String code) Returns theCountryfor the given iso code.static CountryReturns the enum constant of this class with the specified name.static Country[]Country.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of Country in com.bluebell.greenhouse.platform.models.api.dto.locale
Methods in com.bluebell.greenhouse.platform.models.api.dto.locale with parameters of type Country -
Uses of Country in com.bluebell.greenhouse.platform.models.core.nonentities.exchange
Methods in com.bluebell.greenhouse.platform.models.core.nonentities.exchange that return CountryModifier and TypeMethodDescriptionExchangeFilter.country()Returns the value of thecountryrecord component.Constructors in com.bluebell.greenhouse.platform.models.core.nonentities.exchange with parameters of type CountryModifierConstructorDescriptionExchangeFilter(String query, Country country, Currency currency) Creates an instance of aExchangeFilterrecord class. -
Uses of Country in com.bluebell.greenhouse.radicle.repositories.market.event
Methods in com.bluebell.greenhouse.radicle.repositories.market.event with parameters of type CountryModifier and TypeMethodDescriptionMarketEventRepository.findMarketEventByDateTimeAndContentAndCountry(LocalDateTime dateTime, String content, Country country) Looks up aMarketEventby its date and content value. -
Uses of Country in com.bluebell.greenhouse.radicle.services.locale
Methods in com.bluebell.greenhouse.radicle.services.locale that return CountryModifier and TypeMethodDescriptionLocaleService.getCountry(String countryIsoCode) Returns the country for the given ISO code.LocaleService.getCountryForCurrency(String currencyIsoCode) Returns the default country for the given currency ISO code.Methods in com.bluebell.greenhouse.radicle.services.locale that return types with arguments of type CountryModifier and TypeMethodDescriptionLocaleService.findCountry(String countryIsoCode) Attempts to resolve a country by ISO code.LocaleService.findCountryByIsoCodeOrCode(String countryValue) Attempts to resolve a country by ISO code first, then by the legacy enum code.LocaleService.findCountryForCurrency(String currencyIsoCode) Attempts to resolve the default country for a currency ISO code.Methods in com.bluebell.greenhouse.radicle.services.locale with parameters of type CountryModifier and TypeMethodDescriptionbooleanLocaleService.matchesLocale(Country country, String locale) Checks whether the given country matches the locale token. -
Uses of Country in com.bluebell.greenhouse.radicle.services.market.event
Methods in com.bluebell.greenhouse.radicle.services.market.event with parameters of type CountryModifier and TypeMethodDescriptionMarketEventService.findMarketEventByDateTimeAndContentAndCountry(LocalDateTime dateTime, String content, Country country, ZoneId zone) Obtains aMarketEventfor the given date time and content. -
Uses of Country in com.bluebell.greenhouse.radicle.specifications.exchange
Methods in com.bluebell.greenhouse.radicle.specifications.exchange with parameters of type CountryModifier and TypeMethodDescriptionstatic org.springframework.data.jpa.domain.Specification<Exchange> ExchangeSpecifications.hasCountry(Country country) Filters byCountry.