blob: 5f75c7944f933abf6a52c313c14e121a6393d6e2 [file] [log] [blame]
/*
*
* Copyright (c) 2022 Project CHIP Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// THIS FILE IS GENERATED BY ZAP
// This file is generated from clusters-Enums-Check.h.zapt
#pragma once
#include <clusters/SmokeCoAlarm/Enums.h>
namespace chip {
namespace app {
namespace Clusters {
static auto __attribute__((unused)) EnsureKnownEnumValue(SmokeCoAlarm::AlarmStateEnum val)
{
using EnumType = SmokeCoAlarm::AlarmStateEnum;
switch (val)
{
case EnumType::kNormal:
case EnumType::kWarning:
case EnumType::kCritical:
return val;
default:
return EnumType::kUnknownEnumValue;
}
}
static auto __attribute__((unused)) EnsureKnownEnumValue(SmokeCoAlarm::ContaminationStateEnum val)
{
using EnumType = SmokeCoAlarm::ContaminationStateEnum;
switch (val)
{
case EnumType::kNormal:
case EnumType::kLow:
case EnumType::kWarning:
case EnumType::kCritical:
return val;
default:
return EnumType::kUnknownEnumValue;
}
}
static auto __attribute__((unused)) EnsureKnownEnumValue(SmokeCoAlarm::EndOfServiceEnum val)
{
using EnumType = SmokeCoAlarm::EndOfServiceEnum;
switch (val)
{
case EnumType::kNormal:
case EnumType::kExpired:
return val;
default:
return EnumType::kUnknownEnumValue;
}
}
static auto __attribute__((unused)) EnsureKnownEnumValue(SmokeCoAlarm::ExpressedStateEnum val)
{
using EnumType = SmokeCoAlarm::ExpressedStateEnum;
switch (val)
{
case EnumType::kNormal:
case EnumType::kSmokeAlarm:
case EnumType::kCOAlarm:
case EnumType::kBatteryAlert:
case EnumType::kTesting:
case EnumType::kHardwareFault:
case EnumType::kEndOfService:
case EnumType::kInterconnectSmoke:
case EnumType::kInterconnectCO:
return val;
default:
return EnumType::kUnknownEnumValue;
}
}
static auto __attribute__((unused)) EnsureKnownEnumValue(SmokeCoAlarm::MuteStateEnum val)
{
using EnumType = SmokeCoAlarm::MuteStateEnum;
switch (val)
{
case EnumType::kNotMuted:
case EnumType::kMuted:
return val;
default:
return EnumType::kUnknownEnumValue;
}
}
static auto __attribute__((unused)) EnsureKnownEnumValue(SmokeCoAlarm::SensitivityEnum val)
{
using EnumType = SmokeCoAlarm::SensitivityEnum;
switch (val)
{
case EnumType::kHigh:
case EnumType::kStandard:
case EnumType::kLow:
return val;
default:
return EnumType::kUnknownEnumValue;
}
}
} // namespace Clusters
} // namespace app
} // namespace chip