Enum DeviceMode

    • Enum Constant Detail

      • DIGITAL_INPUT

        public static final DeviceMode DIGITAL_INPUT
      • DIGITAL_OUTPUT

        public static final DeviceMode DIGITAL_OUTPUT
      • PWM_OUTPUT

        public static final DeviceMode PWM_OUTPUT
      • ANALOG_INPUT

        public static final DeviceMode ANALOG_INPUT
      • ANALOG_OUTPUT

        public static final DeviceMode ANALOG_OUTPUT
    • Method Detail

      • values

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

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