Class SDL_hid_bus_type

java.lang.Object
club.doki7.sdl3.enumtype.SDL_hid_bus_type

public final class SDL_hid_bus_type extends Object

HID underlying bus types.

Since: This enum is available since SDL 3.2.0.

  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Bluetooth or Bluetooth LE bus Specifications: https://www.bluetooth.com/specifications/specs/human-interface-device-profile-1-1-1/ https://www.bluetooth.com/specifications/specs/hid-service-1-0/ https://www.bluetooth.com/specifications/specs/hid-over-gatt-profile-1-0/
    static final int
    I2C bus Specifications: https://docs.microsoft.com/previous-versions/windows/hardware/design/dn642101(v=vs.85)
    static final int
    SPI bus Specifications: https://www.microsoft.com/download/details.aspx?
    static final int
    Unknown bus type
    static final int
    USB bus Specifications: https://usb.org/hid
  • Method Summary

    Modifier and Type
    Method
    Description
    static String
    explain(int value)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • UNKNOWN

      public static final int UNKNOWN
      Unknown bus type
      See Also:
    • USB

      public static final int USB
      USB bus Specifications: https://usb.org/hid
      See Also:
    • BLUETOOTH

      public static final int BLUETOOTH
      Bluetooth or Bluetooth LE bus Specifications: https://www.bluetooth.com/specifications/specs/human-interface-device-profile-1-1-1/ https://www.bluetooth.com/specifications/specs/hid-service-1-0/ https://www.bluetooth.com/specifications/specs/hid-over-gatt-profile-1-0/
      See Also:
    • I2C

      public static final int I2C
      I2C bus Specifications: https://docs.microsoft.com/previous-versions/windows/hardware/design/dn642101(v=vs.85)
      See Also:
    • SPI

      public static final int SPI
      SPI bus Specifications: https://www.microsoft.com/download/details.aspx?id=103325
      See Also:
  • Method Details