78 lines
2.2 KiB
C++
78 lines
2.2 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/es/model/OptionState.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 ElasticsearchService
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
namespace OptionStateMapper
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
static const int RequiresIndexDocuments_HASH = HashingUtils::HashString("RequiresIndexDocuments");
|
|||
|
|
static const int Processing_HASH = HashingUtils::HashString("Processing");
|
|||
|
|
static const int Active_HASH = HashingUtils::HashString("Active");
|
|||
|
|
|
|||
|
|
|
|||
|
|
OptionState GetOptionStateForName(const Aws::String& name)
|
|||
|
|
{
|
|||
|
|
int hashCode = HashingUtils::HashString(name.c_str());
|
|||
|
|
if (hashCode == RequiresIndexDocuments_HASH)
|
|||
|
|
{
|
|||
|
|
return OptionState::RequiresIndexDocuments;
|
|||
|
|
}
|
|||
|
|
else if (hashCode == Processing_HASH)
|
|||
|
|
{
|
|||
|
|
return OptionState::Processing;
|
|||
|
|
}
|
|||
|
|
else if (hashCode == Active_HASH)
|
|||
|
|
{
|
|||
|
|
return OptionState::Active;
|
|||
|
|
}
|
|||
|
|
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
|
|||
|
|
if(overflowContainer)
|
|||
|
|
{
|
|||
|
|
overflowContainer->StoreOverflow(hashCode, name);
|
|||
|
|
return static_cast<OptionState>(hashCode);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return OptionState::NOT_SET;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
Aws::String GetNameForOptionState(OptionState enumValue)
|
|||
|
|
{
|
|||
|
|
switch(enumValue)
|
|||
|
|
{
|
|||
|
|
case OptionState::RequiresIndexDocuments:
|
|||
|
|
return "RequiresIndexDocuments";
|
|||
|
|
case OptionState::Processing:
|
|||
|
|
return "Processing";
|
|||
|
|
case OptionState::Active:
|
|||
|
|
return "Active";
|
|||
|
|
default:
|
|||
|
|
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
|
|||
|
|
if(overflowContainer)
|
|||
|
|
{
|
|||
|
|
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return {};
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
} // namespace OptionStateMapper
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace ElasticsearchService
|
|||
|
|
} // namespace Aws
|