71 lines
1.8 KiB
C++
71 lines
1.8 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/managedblockchain/model/VoteValue.h>
|
|
#include <aws/core/utils/HashingUtils.h>
|
|
#include <aws/core/Globals.h>
|
|
#include <aws/core/utils/EnumParseOverflowContainer.h>
|
|
|
|
using namespace Aws::Utils;
|
|
|
|
|
|
namespace Aws
|
|
{
|
|
namespace ManagedBlockchain
|
|
{
|
|
namespace Model
|
|
{
|
|
namespace VoteValueMapper
|
|
{
|
|
|
|
static const int YES_HASH = HashingUtils::HashString("YES");
|
|
static const int NO_HASH = HashingUtils::HashString("NO");
|
|
|
|
|
|
VoteValue GetVoteValueForName(const Aws::String& name)
|
|
{
|
|
int hashCode = HashingUtils::HashString(name.c_str());
|
|
if (hashCode == YES_HASH)
|
|
{
|
|
return VoteValue::YES;
|
|
}
|
|
else if (hashCode == NO_HASH)
|
|
{
|
|
return VoteValue::NO;
|
|
}
|
|
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
|
|
if(overflowContainer)
|
|
{
|
|
overflowContainer->StoreOverflow(hashCode, name);
|
|
return static_cast<VoteValue>(hashCode);
|
|
}
|
|
|
|
return VoteValue::NOT_SET;
|
|
}
|
|
|
|
Aws::String GetNameForVoteValue(VoteValue enumValue)
|
|
{
|
|
switch(enumValue)
|
|
{
|
|
case VoteValue::YES:
|
|
return "YES";
|
|
case VoteValue::NO:
|
|
return "NO";
|
|
default:
|
|
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
|
|
if(overflowContainer)
|
|
{
|
|
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
|
|
}
|
|
|
|
return {};
|
|
}
|
|
}
|
|
|
|
} // namespace VoteValueMapper
|
|
} // namespace Model
|
|
} // namespace ManagedBlockchain
|
|
} // namespace Aws
|