Summary: Methods | Inherited Methods
public
class
MtpDeviceInfo
extends Object
This class encapsulates information about an MTP device. This corresponds to the DeviceInfo Dataset described in section 5.1.1 of the MTP specification.
Summary
Public methods | |
|---|---|
final
int[]
|
getEventsSupported()
Returns event code supported by the device. |
final
String
|
getManufacturer()
Returns the manufacturer's name for the MTP device |
final
String
|
getModel()
Returns the model name for the MTP device |
final
int[]
|
getOperationsSupported()
Returns operation code supported by the device. |
final
String
|
getSerialNumber()
Returns the unique serial number for the MTP device |
final
String
|
getVersion()
Returns the version string the MTP device |
boolean
|
isEventSupported(int code)
Returns if the given event is supported by the device or not. |
boolean
|
isOperationSupported(int code)
Returns if the given operation is supported by the device or not. |
Inherited methods | |||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
From class
| |||||||||||||||||||||||
Public methods
getManufacturer
public final String getManufacturer ()
Returns the manufacturer's name for the MTP device
| Returns | |
|---|---|
String |
the manufacturer name.
This value cannot be null. |
getModel
public final String getModel ()
Returns the model name for the MTP device
| Returns | |
|---|---|
String |
the model name.
This value cannot be null. |
getSerialNumber
public final String getSerialNumber ()
Returns the unique serial number for the MTP device
| Returns | |
|---|---|
String |
the serial number.
This value cannot be null. |
getVersion
public final String getVersion ()
Returns the version string the MTP device
| Returns | |
|---|---|
String |
the device version.
This value cannot be null. |
isEventSupported
public boolean isEventSupported (int code)
Returns if the given event is supported by the device or not.
| Parameters | |
|---|---|
code |
int: Event code. |
| Returns | |
|---|---|
boolean |
If the given event is supported by the device or not. |
isOperationSupported
public boolean isOperationSupported (int code)
Returns if the given operation is supported by the device or not.
| Parameters | |
|---|---|
code |
int: Operation code. |
| Returns | |
|---|---|
boolean |
If the given operation is supported by the device or not. |