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