Enum Class QualityAppealStatusEnum
- All Implemented Interfaces:
Serializable
,Comparable<QualityAppealStatusEnum>
,Constable
QualityAppeal Status Enum
申诉状态枚举
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic QualityAppealStatusEnum
根据代码获取枚举getCode()
static QualityAppealStatusEnum
Returns the enum constant of this class with the specified name.static QualityAppealStatusEnum[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PENDING
待处理 - 申诉已提交,等待处理 -
APPROVED
通过 - 申诉通过 -
REJECTED
驳回 - 申诉被驳回
-
-
Field Details
-
code
-
description
-
-
Constructor Details
-
QualityAppealStatusEnum
-
-
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
-
getCode
-
getDescription
-
fromCode
根据代码获取枚举
-