/** * 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 CloudDirectory { namespace Model { namespace RangeModeMapper { static const int FIRST_HASH = HashingUtils::HashString("FIRST"); static const int LAST_HASH = HashingUtils::HashString("LAST"); static const int LAST_BEFORE_MISSING_VALUES_HASH = HashingUtils::HashString("LAST_BEFORE_MISSING_VALUES"); static const int INCLUSIVE_HASH = HashingUtils::HashString("INCLUSIVE"); static const int EXCLUSIVE_HASH = HashingUtils::HashString("EXCLUSIVE"); RangeMode GetRangeModeForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == FIRST_HASH) { return RangeMode::FIRST; } else if (hashCode == LAST_HASH) { return RangeMode::LAST; } else if (hashCode == LAST_BEFORE_MISSING_VALUES_HASH) { return RangeMode::LAST_BEFORE_MISSING_VALUES; } else if (hashCode == INCLUSIVE_HASH) { return RangeMode::INCLUSIVE; } else if (hashCode == EXCLUSIVE_HASH) { return RangeMode::EXCLUSIVE; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return RangeMode::NOT_SET; } Aws::String GetNameForRangeMode(RangeMode enumValue) { switch(enumValue) { case RangeMode::FIRST: return "FIRST"; case RangeMode::LAST: return "LAST"; case RangeMode::LAST_BEFORE_MISSING_VALUES: return "LAST_BEFORE_MISSING_VALUES"; case RangeMode::INCLUSIVE: return "INCLUSIVE"; case RangeMode::EXCLUSIVE: return "EXCLUSIVE"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace RangeModeMapper } // namespace Model } // namespace CloudDirectory } // namespace Aws