/** * 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 APIGateway { namespace Model { namespace OpMapper { static const int add_HASH = HashingUtils::HashString("add"); static const int remove_HASH = HashingUtils::HashString("remove"); static const int replace_HASH = HashingUtils::HashString("replace"); static const int move_HASH = HashingUtils::HashString("move"); static const int copy_HASH = HashingUtils::HashString("copy"); static const int test_HASH = HashingUtils::HashString("test"); Op GetOpForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == add_HASH) { return Op::add; } else if (hashCode == remove_HASH) { return Op::remove; } else if (hashCode == replace_HASH) { return Op::replace; } else if (hashCode == move_HASH) { return Op::move; } else if (hashCode == copy_HASH) { return Op::copy; } else if (hashCode == test_HASH) { return Op::test; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return Op::NOT_SET; } Aws::String GetNameForOp(Op enumValue) { switch(enumValue) { case Op::add: return "add"; case Op::remove: return "remove"; case Op::replace: return "replace"; case Op::move: return "move"; case Op::copy: return "copy"; case Op::test: return "test"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace OpMapper } // namespace Model } // namespace APIGateway } // namespace Aws