java.lang.Object | |
↳ | android.hardware.usb.UsbInterface |
A class representing an interface on a
UsbDevice
.
USB devices can have one or more interfaces, each one providing a different
piece of functionality, separate from the other interfaces.
An interface will have one or more
UsbEndpoint
s, which are the
channels by which the host transfers data with the device.
For more information about communicating with USB hardware, read the USB developer guide.
[Expand]
Inherited Constants
|
|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From interface
android.os.Parcelable
|
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
|
CREATOR |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
|
Describe the kinds of special objects contained in this Parcelable's
marshalled representation.
|
||||||||||
|
Returns the
UsbEndpoint
at the given index.
|
||||||||||
|
Returns the number of
UsbEndpoint
s this interface contains.
|
||||||||||
|
Returns the interface's ID field.
|
||||||||||
|
Returns the interface's class field.
|
||||||||||
|
Returns the interface's protocol field.
|
||||||||||
|
Returns the interface's subclass field.
|
||||||||||
|
Returns a string containing a concise, human-readable description of this
object.
|
||||||||||
|
Flatten this object in to a Parcel.
|
[Expand]
Inherited Methods
|
|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
|||||||||||
From interface
android.os.Parcelable
|
Describe the kinds of special objects contained in this Parcelable's marshalled representation.
Returns the
UsbEndpoint
at the given index.
Returns the number of
UsbEndpoint
s this interface contains.
Returns the interface's ID field. This is an integer that uniquely identifies the interface on the device.
Returns the interface's class field.
Some useful constants for USB classes can be found in
UsbConstants
Returns the interface's protocol field.
Returns the interface's subclass field.
Returns a string containing a concise, human-readable description of this object. Subclasses are encouraged to override this method and provide an implementation that takes into account the object's type and data. The default implementation is equivalent to the following expression:
getClass().getName() + '@' + Integer.toHexString(hashCode())
See
Writing a useful
toString
method
if you intend implementing your own
toString
method.
Flatten this object in to a Parcel.
parcel | The Parcel in which the object should be written. |
---|---|
flags |
Additional flags about how the object should be written.
May be 0 or
PARCELABLE_WRITE_RETURN_VALUE
.
|