Package com.intuit.karate.core
Enum AssignType
- java.lang.Object
-
- java.lang.Enum<AssignType>
-
- com.intuit.karate.core.AssignType
-
- All Implemented Interfaces:
Serializable,Comparable<AssignType>
public enum AssignType extends Enum<AssignType>
- Author:
- pthomas3
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTOBYTE_ARRAYCOPYCSVJSONSTRINGTEXTXMLXML_STRINGYAML
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AssignTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AssignType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTO
public static final AssignType AUTO
-
COPY
public static final AssignType COPY
-
TEXT
public static final AssignType TEXT
-
CSV
public static final AssignType CSV
-
YAML
public static final AssignType YAML
-
JSON
public static final AssignType JSON
-
STRING
public static final AssignType STRING
-
XML
public static final AssignType XML
-
XML_STRING
public static final AssignType XML_STRING
-
BYTE_ARRAY
public static final AssignType BYTE_ARRAY
-
-
Method Detail
-
values
public static AssignType[] 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 (AssignType c : AssignType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AssignType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-