blob: 1a03fa66381cf7f794e5ee9df9431bf5663c765d [file]
/**
* Copyright (C) 2013 kangliqiang ,kangliq@163.com
*
* 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.
*/
#include "MQVersion.h"
namespace rmq
{
int MQVersion::s_CurrentVersion = MQVersion::V3_2_6;
const char* MQVersion::getVersionDesc(int value)
{
switch (value)
{
case V3_0_0_BETA9_SNAPSHOT:
return "V3_0_0_BETA9_SNAPSHOT";
case V3_0_0_BETA9:
return "V3_0_0_BETA9";
case V3_0_0_FINAL:
return "V3_0_0_FINAL";
case V3_0_1_SNAPSHOT:
return "V3_0_1_SNAPSHOT";
case V3_0_1:
return "V3_0_1";
case V3_0_2_SNAPSHOT:
return "V3_0_2_SNAPSHOT";
case V3_0_2:
return "V3_0_2";
case V3_0_3:
return "V3_0_3";
case V3_0_4_SNAPSHOT:
return "V3_0_4_SNAPSHOT";
case V3_0_4:
return "V3_0_4";
case V3_0_5_SNAPSHOT:
return "V3_0_5_SNAPSHOT";
case V3_0_5:
return "V3_0_5";
case V3_0_6_SNAPSHOT:
return "V3_0_6_SNAPSHOT";
case V3_0_6:
return "V3_0_6";
case V3_0_7_SNAPSHOT:
return "V3_0_7_SNAPSHOT";
case V3_0_7:
return "V3_0_7";
case V3_2_6_SNAPSHOT:
return "V3_2_6_SNAPSHOT";
case V3_2_6:
return "V3_2_6";
case V3_2_7_SNAPSHOT:
return "V3_2_7_SNAPSHOT";
case V3_2_7:
return "V3_2_7";
case V3_2_8_SNAPSHOT:
return "V3_2_8_SNAPSHOT";
case V3_2_8:
return "V3_2_8";
case V3_5_8_SNAPSHOT:
return "V3_5_8_SNAPSHOT";
case V3_5_8:
return "V3_5_8";
}
return "";
}
MQVersion::Version MQVersion::value2Version(int value)
{
return (MQVersion::Version)value;
}
}