/** * 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 S3 { namespace Model { namespace InventoryFrequencyMapper { static const int Daily_HASH = HashingUtils::HashString("Daily"); static const int Weekly_HASH = HashingUtils::HashString("Weekly"); InventoryFrequency GetInventoryFrequencyForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == Daily_HASH) { return InventoryFrequency::Daily; } else if (hashCode == Weekly_HASH) { return InventoryFrequency::Weekly; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return InventoryFrequency::NOT_SET; } Aws::String GetNameForInventoryFrequency(InventoryFrequency enumValue) { switch(enumValue) { case InventoryFrequency::Daily: return "Daily"; case InventoryFrequency::Weekly: return "Weekly"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace InventoryFrequencyMapper } // namespace Model } // namespace S3 } // namespace Aws