Enum Class Profile.ProfileEnv
- All Implemented Interfaces:
Serializable, Comparable<Profile.ProfileEnv>, Constable
- Enclosing class:
Profile
支持的环境枚举.
- Author:
- Liu,Dongdong
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic Profile.ProfileEnvReturns the enum constant of this class with the specified name.static Profile.ProfileEnv[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DEV
开发环境. -
TEST
测试环境. -
PROD
生产环境. -
ITG
集成环境. -
UAT
用户验收测试环境. -
LOCAL
本地环境.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-