/** * 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 Pinpoint { namespace Model { namespace ActionMapper { static const int OPEN_APP_HASH = HashingUtils::HashString("OPEN_APP"); static const int DEEP_LINK_HASH = HashingUtils::HashString("DEEP_LINK"); static const int URL_HASH = HashingUtils::HashString("URL"); Action GetActionForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == OPEN_APP_HASH) { return Action::OPEN_APP; } else if (hashCode == DEEP_LINK_HASH) { return Action::DEEP_LINK; } else if (hashCode == URL_HASH) { return Action::URL; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return Action::NOT_SET; } Aws::String GetNameForAction(Action enumValue) { switch(enumValue) { case Action::OPEN_APP: return "OPEN_APP"; case Action::DEEP_LINK: return "DEEP_LINK"; case Action::URL: return "URL"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace ActionMapper } // namespace Model } // namespace Pinpoint } // namespace Aws