Enum QuestionValue.QuestionValueEnum
- java.lang.Object
-
- java.lang.Enum<QuestionValue.QuestionValueEnum>
-
- com.stackone.stackone_client_java.models.components.QuestionValue.QuestionValueEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<QuestionValue.QuestionValueEnum>
- Enclosing class:
- QuestionValue
public static enum QuestionValue.QuestionValueEnum extends java.lang.Enum<QuestionValue.QuestionValueEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ATTACHMENTBOOLEANDATELONG_TEXTMULTI_SELECTNUMBERREFERENCE_CHECKSHORT_TEXTSINGLE_SELECTUNMAPPED_VALUEURLVIDEO
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Stringvalue()static QuestionValue.QuestionValueEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static QuestionValue.QuestionValueEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SHORT_TEXT
public static final QuestionValue.QuestionValueEnum SHORT_TEXT
-
LONG_TEXT
public static final QuestionValue.QuestionValueEnum LONG_TEXT
-
ATTACHMENT
public static final QuestionValue.QuestionValueEnum ATTACHMENT
-
MULTI_SELECT
public static final QuestionValue.QuestionValueEnum MULTI_SELECT
-
SINGLE_SELECT
public static final QuestionValue.QuestionValueEnum SINGLE_SELECT
-
BOOLEAN
public static final QuestionValue.QuestionValueEnum BOOLEAN
-
NUMBER
public static final QuestionValue.QuestionValueEnum NUMBER
-
DATE
public static final QuestionValue.QuestionValueEnum DATE
-
VIDEO
public static final QuestionValue.QuestionValueEnum VIDEO
-
REFERENCE_CHECK
public static final QuestionValue.QuestionValueEnum REFERENCE_CHECK
-
URL
public static final QuestionValue.QuestionValueEnum URL
-
UNMAPPED_VALUE
public static final QuestionValue.QuestionValueEnum UNMAPPED_VALUE
-
-
Method Detail
-
values
public static QuestionValue.QuestionValueEnum[] 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 (QuestionValue.QuestionValueEnum c : QuestionValue.QuestionValueEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static QuestionValue.QuestionValueEnum 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
-
value
public java.lang.String value()
-
-