/** * 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 DocDB { namespace Model { namespace ApplyMethodMapper { static const int immediate_HASH = HashingUtils::HashString("immediate"); static const int pending_reboot_HASH = HashingUtils::HashString("pending-reboot"); ApplyMethod GetApplyMethodForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == immediate_HASH) { return ApplyMethod::immediate; } else if (hashCode == pending_reboot_HASH) { return ApplyMethod::pending_reboot; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return ApplyMethod::NOT_SET; } Aws::String GetNameForApplyMethod(ApplyMethod enumValue) { switch(enumValue) { case ApplyMethod::immediate: return "immediate"; case ApplyMethod::pending_reboot: return "pending-reboot"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace ApplyMethodMapper } // namespace Model } // namespace DocDB } // namespace Aws