Enum ArtifactType
- java.lang.Object
-
- java.lang.Enum<ArtifactType>
-
- software.amazon.awssdk.services.devicefarm.model.ArtifactType
-
- All Implemented Interfaces:
Serializable,Comparable<ArtifactType>
@Generated("software.amazon.awssdk:codegen") 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 ArtifactTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ArtifactType>knownValues()StringtoString()static ArtifactTypevalueOf(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
-
VIDEO_LOG
public static final ArtifactType VIDEO_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
-
CUSTOMER_ARTIFACT
public static final ArtifactType CUSTOMER_ARTIFACT
-
CUSTOMER_ARTIFACT_LOG
public static final ArtifactType CUSTOMER_ARTIFACT_LOG
-
TESTSPEC_OUTPUT
public static final ArtifactType TESTSPEC_OUTPUT
-
UNKNOWN_TO_SDK_VERSION
public static final ArtifactType UNKNOWN_TO_SDK_VERSION
-
-
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:
toStringin classEnum<ArtifactType>
-
fromValue
public static ArtifactType fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- ArtifactType corresponding to the value
-
knownValues
public static Set<ArtifactType> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownArtifactTypes
-
-