Enum ScreeningQuestionTypeEnum
- java.lang.Object
-
- java.lang.Enum<ScreeningQuestionTypeEnum>
-
- com.merge.api.resources.ats.types.ScreeningQuestionTypeEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ScreeningQuestionTypeEnum>
public enum ScreeningQuestionTypeEnum extends java.lang.Enum<ScreeningQuestionTypeEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOLEANDATEFILEMULTI_LINE_TEXTMULTI_SELECTNUMERICSINGLE_LINE_TEXTSINGLE_SELECT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()static ScreeningQuestionTypeEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ScreeningQuestionTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DATE
public static final ScreeningQuestionTypeEnum DATE
-
FILE
public static final ScreeningQuestionTypeEnum FILE
-
SINGLE_SELECT
public static final ScreeningQuestionTypeEnum SINGLE_SELECT
-
MULTI_SELECT
public static final ScreeningQuestionTypeEnum MULTI_SELECT
-
SINGLE_LINE_TEXT
public static final ScreeningQuestionTypeEnum SINGLE_LINE_TEXT
-
MULTI_LINE_TEXT
public static final ScreeningQuestionTypeEnum MULTI_LINE_TEXT
-
NUMERIC
public static final ScreeningQuestionTypeEnum NUMERIC
-
BOOLEAN
public static final ScreeningQuestionTypeEnum BOOLEAN
-
-
Method Detail
-
values
public static ScreeningQuestionTypeEnum[] 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 (ScreeningQuestionTypeEnum c : ScreeningQuestionTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ScreeningQuestionTypeEnum 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
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<ScreeningQuestionTypeEnum>
-
-