1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #include <aws/ec2/model/CurrencyCodeValues.h>
7 #include <aws/core/utils/HashingUtils.h>
8 #include <aws/core/Globals.h>
9 #include <aws/core/utils/EnumParseOverflowContainer.h>
10 
11 using namespace Aws::Utils;
12 
13 
14 namespace Aws
15 {
16   namespace EC2
17   {
18     namespace Model
19     {
20       namespace CurrencyCodeValuesMapper
21       {
22 
23         static const int USD_HASH = HashingUtils::HashString("USD");
24 
25 
GetCurrencyCodeValuesForName(const Aws::String & name)26         CurrencyCodeValues GetCurrencyCodeValuesForName(const Aws::String& name)
27         {
28           int hashCode = HashingUtils::HashString(name.c_str());
29           if (hashCode == USD_HASH)
30           {
31             return CurrencyCodeValues::USD;
32           }
33           EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
34           if(overflowContainer)
35           {
36             overflowContainer->StoreOverflow(hashCode, name);
37             return static_cast<CurrencyCodeValues>(hashCode);
38           }
39 
40           return CurrencyCodeValues::NOT_SET;
41         }
42 
GetNameForCurrencyCodeValues(CurrencyCodeValues enumValue)43         Aws::String GetNameForCurrencyCodeValues(CurrencyCodeValues enumValue)
44         {
45           switch(enumValue)
46           {
47           case CurrencyCodeValues::USD:
48             return "USD";
49           default:
50             EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
51             if(overflowContainer)
52             {
53               return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
54             }
55 
56             return {};
57           }
58         }
59 
60       } // namespace CurrencyCodeValuesMapper
61     } // namespace Model
62   } // namespace EC2
63 } // namespace Aws
64