Enum AndroidDeviceName
- java.lang.Object
-
- java.lang.Enum<AndroidDeviceName>
-
- com.applitools.eyes.visualgrid.model.AndroidDeviceName
-
- All Implemented Interfaces:
Serializable,Comparable<AndroidDeviceName>
public enum AndroidDeviceName extends Enum<AndroidDeviceName>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AndroidDeviceNamefromName(String value)StringgetName()StringtoString()static AndroidDeviceNamevalueOf(String name)Returns the enum constant of this type with the specified name.static AndroidDeviceName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Sony_Xperia_10_II
public static final AndroidDeviceName Sony_Xperia_10_II
-
Pixel_3_XL
public static final AndroidDeviceName Pixel_3_XL
-
Pixel_4
public static final AndroidDeviceName Pixel_4
-
Pixel_4_XL
public static final AndroidDeviceName Pixel_4_XL
-
Galaxy_Note_9
public static final AndroidDeviceName Galaxy_Note_9
-
Galaxy_S9
public static final AndroidDeviceName Galaxy_S9
-
Galaxy_S9_Plus
public static final AndroidDeviceName Galaxy_S9_Plus
-
Galaxy_S10
public static final AndroidDeviceName Galaxy_S10
-
Galaxy_S10_Plus
public static final AndroidDeviceName Galaxy_S10_Plus
-
Galaxy_Note_10
public static final AndroidDeviceName Galaxy_Note_10
-
Galaxy_Note_10_Plus
public static final AndroidDeviceName Galaxy_Note_10_Plus
-
Galaxy_S20
public static final AndroidDeviceName Galaxy_S20
-
Galaxy_S20_PLUS
public static final AndroidDeviceName Galaxy_S20_PLUS
-
Galaxy_S21
public static final AndroidDeviceName Galaxy_S21
-
Galaxy_S21_PLUS
public static final AndroidDeviceName Galaxy_S21_PLUS
-
Galaxy_S21_ULTRA
public static final AndroidDeviceName Galaxy_S21_ULTRA
-
Xiaomi_Redmi_Note_11_Pro
public static final AndroidDeviceName Xiaomi_Redmi_Note_11_Pro
-
Xiaomi_Redmi_Note_11
public static final AndroidDeviceName Xiaomi_Redmi_Note_11
-
Pixel_6
public static final AndroidDeviceName Pixel_6
-
Pixel_5
public static final AndroidDeviceName Pixel_5
-
Galaxy_S22
public static final AndroidDeviceName Galaxy_S22
-
Galaxy_S22_Plus
public static final AndroidDeviceName Galaxy_S22_Plus
-
Galaxy_Tab_S8
public static final AndroidDeviceName Galaxy_Tab_S8
-
Galaxy_Tab_S7
public static final AndroidDeviceName Galaxy_Tab_S7
-
-
Method Detail
-
values
public static AndroidDeviceName[] 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 (AndroidDeviceName c : AndroidDeviceName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AndroidDeviceName 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
-
getName
public String getName()
-
fromName
public static AndroidDeviceName fromName(String value) throws IllegalArgumentException
- Returns:
- the Enum representation for the given string.
- Throws:
IllegalArgumentException- if unknown string.
-
toString
public String toString()
- Overrides:
toStringin classEnum<AndroidDeviceName>
-
-