Enum DeviceName

    • Enum Constant Detail

      • Sony_Xperia_10_II

        public static final DeviceName Sony_Xperia_10_II
      • Blackberry_PlayBook

        public static final DeviceName Blackberry_PlayBook
      • BlackBerry_Z30

        public static final DeviceName BlackBerry_Z30
      • Galaxy_A5

        public static final DeviceName Galaxy_A5
      • Galaxy_Note_10

        public static final DeviceName Galaxy_Note_10
      • Galaxy_Note_10_Plus

        public static final DeviceName Galaxy_Note_10_Plus
      • Galaxy_Note_2

        public static final DeviceName Galaxy_Note_2
      • Galaxy_Note_3

        public static final DeviceName Galaxy_Note_3
      • Galaxy_Note_4

        public static final DeviceName Galaxy_Note_4
      • Galaxy_Note_8

        public static final DeviceName Galaxy_Note_8
      • Galaxy_Note_9

        public static final DeviceName Galaxy_Note_9
      • Galaxy_S3

        public static final DeviceName Galaxy_S3
      • Galaxy_S5

        public static final DeviceName Galaxy_S5
      • Galaxy_S8

        public static final DeviceName Galaxy_S8
      • Galaxy_S8_Plus

        public static final DeviceName Galaxy_S8_Plus
      • Galaxy_S9

        public static final DeviceName Galaxy_S9
      • Galaxy_S9_Plus

        public static final DeviceName Galaxy_S9_Plus
      • Galaxy_S10

        public static final DeviceName Galaxy_S10
      • Galaxy_S10_Plus

        public static final DeviceName Galaxy_S10_Plus
      • Galaxy_S20

        public static final DeviceName Galaxy_S20
      • iPad_6th_Gen

        public static final DeviceName iPad_6th_Gen
      • iPad_7th_Gen

        public static final DeviceName iPad_7th_Gen
      • iPad_Air_2

        public static final DeviceName iPad_Air_2
      • iPad_Mini

        public static final DeviceName iPad_Mini
      • iPad_Pro

        public static final DeviceName iPad_Pro
      • iPhone_11

        public static final DeviceName iPhone_11
      • iPhone_11_Pro

        public static final DeviceName iPhone_11_Pro
      • iPhone_11_Pro_Max

        public static final DeviceName iPhone_11_Pro_Max
      • iPhone_4

        public static final DeviceName iPhone_4
      • iPhone_5SE

        public static final DeviceName iPhone_5SE
      • iPhone_6_7_8

        public static final DeviceName iPhone_6_7_8
      • iPhone_6_7_8_Plus

        public static final DeviceName iPhone_6_7_8_Plus
      • iPhone_X

        public static final DeviceName iPhone_X
      • iPhone_XR

        public static final DeviceName iPhone_XR
      • iPhone_XS

        public static final DeviceName iPhone_XS
      • iPhone_XS_Max

        public static final DeviceName iPhone_XS_Max
      • Kindle_Fire_HDX

        public static final DeviceName Kindle_Fire_HDX
      • Laptop_with_HiDPI_screen

        public static final DeviceName Laptop_with_HiDPI_screen
      • Laptop_with_MDPI_screen

        public static final DeviceName Laptop_with_MDPI_screen
      • Laptop_with_touch

        public static final DeviceName Laptop_with_touch
      • LG_Optimus_L70

        public static final DeviceName LG_Optimus_L70
      • Microsoft_Lumia_550

        public static final DeviceName Microsoft_Lumia_550
      • Microsoft_Lumia_950

        public static final DeviceName Microsoft_Lumia_950
      • Nexus_10

        public static final DeviceName Nexus_10
      • Nexus_5X

        public static final DeviceName Nexus_5X
      • Nexus_6P

        public static final DeviceName Nexus_6P
      • Nokia_Lumia_520

        public static final DeviceName Nokia_Lumia_520
      • Nokia_N9

        public static final DeviceName Nokia_N9
      • OnePlus_7T

        public static final DeviceName OnePlus_7T
      • OnePlus_7T_Pro

        public static final DeviceName OnePlus_7T_Pro
      • Pixel_2_XL

        public static final DeviceName Pixel_2_XL
      • Pixel_3_XL

        public static final DeviceName Pixel_3_XL
      • Pixel_4_XL

        public static final DeviceName Pixel_4_XL
      • Galaxy_Tab_S7

        public static final DeviceName Galaxy_Tab_S7
    • Method Detail

      • values

        public static DeviceName[] 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 (DeviceName c : DeviceName.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static DeviceName 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 name
        NullPointerException - if the argument is null
      • getName

        public String getName()