Enum DeviceMode

java.lang.Object
java.lang.Enum<DeviceMode>
com.diozero.api.DeviceMode
All Implemented Interfaces:
Serializable, Comparable<DeviceMode>

public enum DeviceMode
extends Enum<DeviceMode>
Valid GPIO modes
  • Enum Constant Details

    • 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
    • SERVO

      public static final DeviceMode SERVO
    • UNKNOWN

      public static final DeviceMode UNKNOWN
  • Method Details

    • values

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