/** * 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 Batch { namespace Model { namespace JQStatusMapper { static const int CREATING_HASH = HashingUtils::HashString("CREATING"); static const int UPDATING_HASH = HashingUtils::HashString("UPDATING"); static const int DELETING_HASH = HashingUtils::HashString("DELETING"); static const int DELETED_HASH = HashingUtils::HashString("DELETED"); static const int VALID_HASH = HashingUtils::HashString("VALID"); static const int INVALID_HASH = HashingUtils::HashString("INVALID"); JQStatus GetJQStatusForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == CREATING_HASH) { return JQStatus::CREATING; } else if (hashCode == UPDATING_HASH) { return JQStatus::UPDATING; } else if (hashCode == DELETING_HASH) { return JQStatus::DELETING; } else if (hashCode == DELETED_HASH) { return JQStatus::DELETED; } else if (hashCode == VALID_HASH) { return JQStatus::VALID; } else if (hashCode == INVALID_HASH) { return JQStatus::INVALID; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return JQStatus::NOT_SET; } Aws::String GetNameForJQStatus(JQStatus enumValue) { switch(enumValue) { case JQStatus::CREATING: return "CREATING"; case JQStatus::UPDATING: return "UPDATING"; case JQStatus::DELETING: return "DELETING"; case JQStatus::DELETED: return "DELETED"; case JQStatus::VALID: return "VALID"; case JQStatus::INVALID: return "INVALID"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace JQStatusMapper } // namespace Model } // namespace Batch } // namespace Aws