public enum SurveyStatus extends java.lang.Enum<SurveyStatus>
Enum Constant and Description |
---|
SURVEY_RES_BUSY
The question being displayed.
|
SURVEY_RES_CANCEL_BY_CUSTOMER
Survey is cancelled by the customer.
|
SURVEY_RES_CANCEL_BY_MERCHANT
Survey is aborted by the merchant.
|
SURVEY_RES_CUSTOM_ICON_ERROR
The 'icon_count' and 'icons' size does not match.
|
SURVEY_RES_NOT_STARTED
The survey is not started.
|
SURVEY_RES_OK
Survey is answered.
|
SURVEY_RES_SKIP
Survey is skipped.
|
SURVEY_RES_SYSTEM_ERROR
An system error occurred.
|
SURVEY_RES_UNKNOWN
The result is unknown.
|
Modifier and Type | Method and Description |
---|---|
static SurveyStatus |
getEnum(int value)
Get enum from its numeric value.
|
int |
getNumValue() |
java.lang.String |
getTextValue() |
static SurveyStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SurveyStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SurveyStatus SURVEY_RES_OK
public static final SurveyStatus SURVEY_RES_CANCEL_BY_MERCHANT
public static final SurveyStatus SURVEY_RES_CANCEL_BY_CUSTOMER
public static final SurveyStatus SURVEY_RES_SKIP
public static final SurveyStatus SURVEY_RES_BUSY
public static final SurveyStatus SURVEY_RES_NOT_STARTED
public static final SurveyStatus SURVEY_RES_CUSTOM_ICON_ERROR
public static final SurveyStatus SURVEY_RES_SYSTEM_ERROR
public static final SurveyStatus SURVEY_RES_UNKNOWN
public static SurveyStatus[] values()
public static SurveyStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getNumValue()
public java.lang.String getTextValue()
public static SurveyStatus getEnum(int value)