Enum AnswerValue.AnswerValueEnum
- java.lang.Object
-
- java.lang.Enum<AnswerValue.AnswerValueEnum>
-
- com.stackone.stackone_client_java.models.components.AnswerValue.AnswerValueEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AnswerValue.AnswerValueEnum>
- Enclosing class:
- AnswerValue
public static enum AnswerValue.AnswerValueEnum extends java.lang.Enum<AnswerValue.AnswerValueEnum>
-
-
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 AnswerValue.AnswerValueEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AnswerValue.AnswerValueEnum[]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 AnswerValue.AnswerValueEnum SHORT_TEXT
-
LONG_TEXT
public static final AnswerValue.AnswerValueEnum LONG_TEXT
-
ATTACHMENT
public static final AnswerValue.AnswerValueEnum ATTACHMENT
-
MULTI_SELECT
public static final AnswerValue.AnswerValueEnum MULTI_SELECT
-
SINGLE_SELECT
public static final AnswerValue.AnswerValueEnum SINGLE_SELECT
-
BOOLEAN
public static final AnswerValue.AnswerValueEnum BOOLEAN
-
NUMBER
public static final AnswerValue.AnswerValueEnum NUMBER
-
DATE
public static final AnswerValue.AnswerValueEnum DATE
-
VIDEO
public static final AnswerValue.AnswerValueEnum VIDEO
-
REFERENCE_CHECK
public static final AnswerValue.AnswerValueEnum REFERENCE_CHECK
-
URL
public static final AnswerValue.AnswerValueEnum URL
-
UNMAPPED_VALUE
public static final AnswerValue.AnswerValueEnum UNMAPPED_VALUE
-
-
Method Detail
-
values
public static AnswerValue.AnswerValueEnum[] 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 (AnswerValue.AnswerValueEnum c : AnswerValue.AnswerValueEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AnswerValue.AnswerValueEnum 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()
-
-