Enum UploadType
- java.lang.Object
-
- java.lang.Enum<UploadType>
-
- com.amazonaws.services.devicefarm.model.UploadType
-
- All Implemented Interfaces:
Serializable
,Comparable<UploadType>
public enum UploadType extends Enum<UploadType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UploadType
fromValue(String value)
Use this in place of valueOf.String
toString()
static UploadType
valueOf(String name)
Returns the enum constant of this type with the specified name.static UploadType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANDROID_APP
public static final UploadType ANDROID_APP
-
IOS_APP
public static final UploadType IOS_APP
-
WEB_APP
public static final UploadType WEB_APP
-
EXTERNAL_DATA
public static final UploadType EXTERNAL_DATA
-
APPIUM_JAVA_JUNIT_TEST_PACKAGE
public static final UploadType APPIUM_JAVA_JUNIT_TEST_PACKAGE
-
APPIUM_JAVA_TESTNG_TEST_PACKAGE
public static final UploadType APPIUM_JAVA_TESTNG_TEST_PACKAGE
-
APPIUM_PYTHON_TEST_PACKAGE
public static final UploadType APPIUM_PYTHON_TEST_PACKAGE
-
APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE
public static final UploadType APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE
-
APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE
public static final UploadType APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE
-
APPIUM_WEB_PYTHON_TEST_PACKAGE
public static final UploadType APPIUM_WEB_PYTHON_TEST_PACKAGE
-
CALABASH_TEST_PACKAGE
public static final UploadType CALABASH_TEST_PACKAGE
-
INSTRUMENTATION_TEST_PACKAGE
public static final UploadType INSTRUMENTATION_TEST_PACKAGE
-
UIAUTOMATION_TEST_PACKAGE
public static final UploadType UIAUTOMATION_TEST_PACKAGE
-
UIAUTOMATOR_TEST_PACKAGE
public static final UploadType UIAUTOMATOR_TEST_PACKAGE
-
XCTEST_TEST_PACKAGE
public static final UploadType XCTEST_TEST_PACKAGE
-
XCTEST_UI_TEST_PACKAGE
public static final UploadType XCTEST_UI_TEST_PACKAGE
-
-
Method Detail
-
values
public static UploadType[] 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 (UploadType c : UploadType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UploadType 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<UploadType>
-
fromValue
public static UploadType fromValue(String value)
Use this in place of valueOf.- Parameters:
value
- real value- Returns:
- UploadType corresponding to the value
-
-