/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include using namespace Aws::Utils; namespace Aws { namespace LexModelBuildingService { namespace Model { namespace LocaleMapper { static const int de_DE_HASH = HashingUtils::HashString("de-DE"); static const int en_AU_HASH = HashingUtils::HashString("en-AU"); static const int en_GB_HASH = HashingUtils::HashString("en-GB"); static const int en_IN_HASH = HashingUtils::HashString("en-IN"); static const int en_US_HASH = HashingUtils::HashString("en-US"); static const int es_419_HASH = HashingUtils::HashString("es-419"); static const int es_ES_HASH = HashingUtils::HashString("es-ES"); static const int es_US_HASH = HashingUtils::HashString("es-US"); static const int fr_FR_HASH = HashingUtils::HashString("fr-FR"); static const int fr_CA_HASH = HashingUtils::HashString("fr-CA"); static const int it_IT_HASH = HashingUtils::HashString("it-IT"); static const int ja_JP_HASH = HashingUtils::HashString("ja-JP"); static const int ko_KR_HASH = HashingUtils::HashString("ko-KR"); Locale GetLocaleForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == de_DE_HASH) { return Locale::de_DE; } else if (hashCode == en_AU_HASH) { return Locale::en_AU; } else if (hashCode == en_GB_HASH) { return Locale::en_GB; } else if (hashCode == en_IN_HASH) { return Locale::en_IN; } else if (hashCode == en_US_HASH) { return Locale::en_US; } else if (hashCode == es_419_HASH) { return Locale::es_419; } else if (hashCode == es_ES_HASH) { return Locale::es_ES; } else if (hashCode == es_US_HASH) { return Locale::es_US; } else if (hashCode == fr_FR_HASH) { return Locale::fr_FR; } else if (hashCode == fr_CA_HASH) { return Locale::fr_CA; } else if (hashCode == it_IT_HASH) { return Locale::it_IT; } else if (hashCode == ja_JP_HASH) { return Locale::ja_JP; } else if (hashCode == ko_KR_HASH) { return Locale::ko_KR; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return Locale::NOT_SET; } Aws::String GetNameForLocale(Locale enumValue) { switch(enumValue) { case Locale::de_DE: return "de-DE"; case Locale::en_AU: return "en-AU"; case Locale::en_GB: return "en-GB"; case Locale::en_IN: return "en-IN"; case Locale::en_US: return "en-US"; case Locale::es_419: return "es-419"; case Locale::es_ES: return "es-ES"; case Locale::es_US: return "es-US"; case Locale::fr_FR: return "fr-FR"; case Locale::fr_CA: return "fr-CA"; case Locale::it_IT: return "it-IT"; case Locale::ja_JP: return "ja-JP"; case Locale::ko_KR: return "ko-KR"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace LocaleMapper } // namespace Model } // namespace LexModelBuildingService } // namespace Aws