Enum ArtifactType
- java.lang.Object
-
- java.lang.Enum<ArtifactType>
-
- com.amazonaws.services.devicefarm.model.ArtifactType
-
- All Implemented Interfaces:
Serializable
,Comparable<ArtifactType>
public enum ArtifactType extends Enum<ArtifactType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ArtifactType
fromValue(String value)
Use this in place of valueOf.String
toString()
static ArtifactType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ArtifactType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final ArtifactType UNKNOWN
-
SCREENSHOT
public static final ArtifactType SCREENSHOT
-
DEVICE_LOG
public static final ArtifactType DEVICE_LOG
-
MESSAGE_LOG
public static final ArtifactType MESSAGE_LOG
-
RESULT_LOG
public static final ArtifactType RESULT_LOG
-
SERVICE_LOG
public static final ArtifactType SERVICE_LOG
-
WEBKIT_LOG
public static final ArtifactType WEBKIT_LOG
-
INSTRUMENTATION_OUTPUT
public static final ArtifactType INSTRUMENTATION_OUTPUT
-
EXERCISER_MONKEY_OUTPUT
public static final ArtifactType EXERCISER_MONKEY_OUTPUT
-
CALABASH_JSON_OUTPUT
public static final ArtifactType CALABASH_JSON_OUTPUT
-
CALABASH_PRETTY_OUTPUT
public static final ArtifactType CALABASH_PRETTY_OUTPUT
-
CALABASH_STANDARD_OUTPUT
public static final ArtifactType CALABASH_STANDARD_OUTPUT
-
CALABASH_JAVA_XML_OUTPUT
public static final ArtifactType CALABASH_JAVA_XML_OUTPUT
-
AUTOMATION_OUTPUT
public static final ArtifactType AUTOMATION_OUTPUT
-
APPIUM_SERVER_OUTPUT
public static final ArtifactType APPIUM_SERVER_OUTPUT
-
APPIUM_JAVA_OUTPUT
public static final ArtifactType APPIUM_JAVA_OUTPUT
-
APPIUM_JAVA_XML_OUTPUT
public static final ArtifactType APPIUM_JAVA_XML_OUTPUT
-
APPIUM_PYTHON_OUTPUT
public static final ArtifactType APPIUM_PYTHON_OUTPUT
-
APPIUM_PYTHON_XML_OUTPUT
public static final ArtifactType APPIUM_PYTHON_XML_OUTPUT
-
EXPLORER_EVENT_LOG
public static final ArtifactType EXPLORER_EVENT_LOG
-
EXPLORER_SUMMARY_LOG
public static final ArtifactType EXPLORER_SUMMARY_LOG
-
APPLICATION_CRASH_REPORT
public static final ArtifactType APPLICATION_CRASH_REPORT
-
XCTEST_LOG
public static final ArtifactType XCTEST_LOG
-
VIDEO
public static final ArtifactType VIDEO
-
-
Method Detail
-
values
public static ArtifactType[] 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 (ArtifactType c : ArtifactType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ArtifactType 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
-
toString
public String toString()
- Overrides:
toString
in classEnum<ArtifactType>
-
fromValue
public static ArtifactType fromValue(String value)
Use this in place of valueOf.- Parameters:
value
- real value- Returns:
- ArtifactType corresponding to the value
-
-