/** * 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 IoTFleetHub { namespace Model { namespace ApplicationStateMapper { static const int CREATING_HASH = HashingUtils::HashString("CREATING"); static const int DELETING_HASH = HashingUtils::HashString("DELETING"); static const int ACTIVE_HASH = HashingUtils::HashString("ACTIVE"); static const int CREATE_FAILED_HASH = HashingUtils::HashString("CREATE_FAILED"); static const int DELETE_FAILED_HASH = HashingUtils::HashString("DELETE_FAILED"); ApplicationState GetApplicationStateForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == CREATING_HASH) { return ApplicationState::CREATING; } else if (hashCode == DELETING_HASH) { return ApplicationState::DELETING; } else if (hashCode == ACTIVE_HASH) { return ApplicationState::ACTIVE; } else if (hashCode == CREATE_FAILED_HASH) { return ApplicationState::CREATE_FAILED; } else if (hashCode == DELETE_FAILED_HASH) { return ApplicationState::DELETE_FAILED; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return ApplicationState::NOT_SET; } Aws::String GetNameForApplicationState(ApplicationState enumValue) { switch(enumValue) { case ApplicationState::CREATING: return "CREATING"; case ApplicationState::DELETING: return "DELETING"; case ApplicationState::ACTIVE: return "ACTIVE"; case ApplicationState::CREATE_FAILED: return "CREATE_FAILED"; case ApplicationState::DELETE_FAILED: return "DELETE_FAILED"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace ApplicationStateMapper } // namespace Model } // namespace IoTFleetHub } // namespace Aws