Enum DeviceType

    • Enum Constant Detail

      • DT_3330

        public static final DeviceType DT_3330
        Device type of 3330.
        Since:
        1.0.0
      • DT_3340

        public static final DeviceType DT_3340
        Device type of 3340.
        Since:
        1.0.0
      • DT_3350

        public static final DeviceType DT_3350
        Device type of 3350.
        Since:
        1.0.0
      • DT_3375

        public static final DeviceType DT_3375
        Device type of 3375.
        Since:
        1.0.0
      • DT_3380

        public static final DeviceType DT_3380
        Device type of 3380.
        Since:
        1.0.0
      • DT_3390

        public static final DeviceType DT_3390
        Device type of 3390.
        Since:
        1.0.0
    • Method Detail

      • values

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

        public static DeviceType 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