Enum QuestionStatus
- java.lang.Object
-
- java.lang.Enum<QuestionStatus>
-
- com.streamlayer.interactive.common.QuestionStatus
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,java.io.Serializable,java.lang.Comparable<QuestionStatus>
public enum QuestionStatus extends java.lang.Enum<QuestionStatus> implements com.google.protobuf.Internal.EnumLite
Protobuf enumstreamlayer.interactive.QuestionStatus
-
-
Enum Constant Summary
Enum Constants Enum Constant Description QUESTION_STATUS_ACTIVEQUESTION_STATUS_ACTIVE = 3;QUESTION_STATUS_DISABLEDQUESTION_STATUS_DISABLED = 6;QUESTION_STATUS_ENABLEDQUESTION_STATUS_ENABLED = 5;QUESTION_STATUS_NOT_SCHEDULEDQUESTION_STATUS_NOT_SCHEDULED = 1;QUESTION_STATUS_RESOLVEDQUESTION_STATUS_RESOLVED = 4;QUESTION_STATUS_SCHEDULEDQUESTION_STATUS_SCHEDULED = 2;QUESTION_STATUS_UNSETQUESTION_STATUS_UNSET = 0;UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static intQUESTION_STATUS_ACTIVE_VALUEQUESTION_STATUS_ACTIVE = 3;static intQUESTION_STATUS_DISABLED_VALUEQUESTION_STATUS_DISABLED = 6;static intQUESTION_STATUS_ENABLED_VALUEQUESTION_STATUS_ENABLED = 5;static intQUESTION_STATUS_NOT_SCHEDULED_VALUEQUESTION_STATUS_NOT_SCHEDULED = 1;static intQUESTION_STATUS_RESOLVED_VALUEQUESTION_STATUS_RESOLVED = 4;static intQUESTION_STATUS_SCHEDULED_VALUEQUESTION_STATUS_SCHEDULED = 2;static intQUESTION_STATUS_UNSET_VALUEQUESTION_STATUS_UNSET = 0;
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static QuestionStatusforNumber(int value)intgetNumber()static com.google.protobuf.Internal.EnumLiteMap<QuestionStatus>internalGetValueMap()static com.google.protobuf.Internal.EnumVerifierinternalGetVerifier()static QuestionStatusvalueOf(int value)Deprecated.static QuestionStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static QuestionStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
QUESTION_STATUS_UNSET
public static final QuestionStatus QUESTION_STATUS_UNSET
QUESTION_STATUS_UNSET = 0;
-
QUESTION_STATUS_NOT_SCHEDULED
public static final QuestionStatus QUESTION_STATUS_NOT_SCHEDULED
QUESTION_STATUS_NOT_SCHEDULED = 1;
-
QUESTION_STATUS_SCHEDULED
public static final QuestionStatus QUESTION_STATUS_SCHEDULED
QUESTION_STATUS_SCHEDULED = 2;
-
QUESTION_STATUS_ACTIVE
public static final QuestionStatus QUESTION_STATUS_ACTIVE
QUESTION_STATUS_ACTIVE = 3;
-
QUESTION_STATUS_RESOLVED
public static final QuestionStatus QUESTION_STATUS_RESOLVED
QUESTION_STATUS_RESOLVED = 4;
-
QUESTION_STATUS_ENABLED
public static final QuestionStatus QUESTION_STATUS_ENABLED
QUESTION_STATUS_ENABLED = 5;
-
QUESTION_STATUS_DISABLED
public static final QuestionStatus QUESTION_STATUS_DISABLED
QUESTION_STATUS_DISABLED = 6;
-
UNRECOGNIZED
public static final QuestionStatus UNRECOGNIZED
-
-
Field Detail
-
QUESTION_STATUS_UNSET_VALUE
public static final int QUESTION_STATUS_UNSET_VALUE
QUESTION_STATUS_UNSET = 0;- See Also:
- Constant Field Values
-
QUESTION_STATUS_NOT_SCHEDULED_VALUE
public static final int QUESTION_STATUS_NOT_SCHEDULED_VALUE
QUESTION_STATUS_NOT_SCHEDULED = 1;- See Also:
- Constant Field Values
-
QUESTION_STATUS_SCHEDULED_VALUE
public static final int QUESTION_STATUS_SCHEDULED_VALUE
QUESTION_STATUS_SCHEDULED = 2;- See Also:
- Constant Field Values
-
QUESTION_STATUS_ACTIVE_VALUE
public static final int QUESTION_STATUS_ACTIVE_VALUE
QUESTION_STATUS_ACTIVE = 3;- See Also:
- Constant Field Values
-
QUESTION_STATUS_RESOLVED_VALUE
public static final int QUESTION_STATUS_RESOLVED_VALUE
QUESTION_STATUS_RESOLVED = 4;- See Also:
- Constant Field Values
-
QUESTION_STATUS_ENABLED_VALUE
public static final int QUESTION_STATUS_ENABLED_VALUE
QUESTION_STATUS_ENABLED = 5;- See Also:
- Constant Field Values
-
QUESTION_STATUS_DISABLED_VALUE
public static final int QUESTION_STATUS_DISABLED_VALUE
QUESTION_STATUS_DISABLED = 6;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static QuestionStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (QuestionStatus c : QuestionStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static QuestionStatus valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getNumber
public final int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite
-
valueOf
@Deprecated public static QuestionStatus valueOf(int value)
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
value- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
forNumber
public static QuestionStatus forNumber(int value)
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<QuestionStatus> internalGetValueMap()
-
internalGetVerifier
public static com.google.protobuf.Internal.EnumVerifier internalGetVerifier()
-
-