Enum AndroidService.ChangeTimeZoneWorkflow
- java.lang.Object
-
- java.lang.Enum<AndroidService.ChangeTimeZoneWorkflow>
-
- com.zebrunner.carina.utils.android.AndroidService.ChangeTimeZoneWorkflow
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AndroidService.ChangeTimeZoneWorkflow>
- Enclosing class:
- AndroidService
public static enum AndroidService.ChangeTimeZoneWorkflow extends java.lang.Enum<AndroidService.ChangeTimeZoneWorkflow>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getWorkflow()
boolean
isSupported(AndroidService.ChangeTimeZoneWorkflow workflow)
static AndroidService.ChangeTimeZoneWorkflow
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AndroidService.ChangeTimeZoneWorkflow[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADB
public static final AndroidService.ChangeTimeZoneWorkflow ADB
-
SETTINGS
public static final AndroidService.ChangeTimeZoneWorkflow SETTINGS
-
APK
public static final AndroidService.ChangeTimeZoneWorkflow APK
-
ALL
public static final AndroidService.ChangeTimeZoneWorkflow ALL
-
-
Method Detail
-
values
public static AndroidService.ChangeTimeZoneWorkflow[] 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 (AndroidService.ChangeTimeZoneWorkflow c : AndroidService.ChangeTimeZoneWorkflow.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AndroidService.ChangeTimeZoneWorkflow 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
-
getWorkflow
public int getWorkflow()
-
isSupported
public boolean isSupported(AndroidService.ChangeTimeZoneWorkflow workflow)
-
-