/** * 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 CloudSearch { 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"); static const int FailedToValidate_HASH = HashingUtils::HashString("FailedToValidate"); 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; } else if (hashCode == FailedToValidate_HASH) { return OptionState::FailedToValidate; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(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"; case OptionState::FailedToValidate: return "FailedToValidate"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace OptionStateMapper } // namespace Model } // namespace CloudSearch } // namespace Aws