This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-pinpoint/source/model/Frequency.cpp

99 lines
2.8 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/pinpoint/model/Frequency.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 Pinpoint
{
namespace Model
{
namespace FrequencyMapper
{
static const int ONCE_HASH = HashingUtils::HashString("ONCE");
static const int HOURLY_HASH = HashingUtils::HashString("HOURLY");
static const int DAILY_HASH = HashingUtils::HashString("DAILY");
static const int WEEKLY_HASH = HashingUtils::HashString("WEEKLY");
static const int MONTHLY_HASH = HashingUtils::HashString("MONTHLY");
static const int EVENT_HASH = HashingUtils::HashString("EVENT");
Frequency GetFrequencyForName(const Aws::String& name)
{
int hashCode = HashingUtils::HashString(name.c_str());
if (hashCode == ONCE_HASH)
{
return Frequency::ONCE;
}
else if (hashCode == HOURLY_HASH)
{
return Frequency::HOURLY;
}
else if (hashCode == DAILY_HASH)
{
return Frequency::DAILY;
}
else if (hashCode == WEEKLY_HASH)
{
return Frequency::WEEKLY;
}
else if (hashCode == MONTHLY_HASH)
{
return Frequency::MONTHLY;
}
else if (hashCode == EVENT_HASH)
{
return Frequency::EVENT;
}
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
overflowContainer->StoreOverflow(hashCode, name);
return static_cast<Frequency>(hashCode);
}
return Frequency::NOT_SET;
}
Aws::String GetNameForFrequency(Frequency enumValue)
{
switch(enumValue)
{
case Frequency::ONCE:
return "ONCE";
case Frequency::HOURLY:
return "HOURLY";
case Frequency::DAILY:
return "DAILY";
case Frequency::WEEKLY:
return "WEEKLY";
case Frequency::MONTHLY:
return "MONTHLY";
case Frequency::EVENT:
return "EVENT";
default:
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
}
return {};
}
}
} // namespace FrequencyMapper
} // namespace Model
} // namespace Pinpoint
} // namespace Aws