DiscoveryRequest
class DiscoveryRequest : Parcelable
Encapsulates parameters for android.net.nsd.NsdManager#discoverServices.
Summary
Inherited constants |
From class Parcelable
Int |
CONTENTS_FILE_DESCRIPTOR
Descriptor bit used with describeContents() : indicates that the Parcelable object's flattened representation includes a file descriptor.
|
Int |
PARCELABLE_WRITE_RETURN_VALUE
Flag for use with writeToParcel : the object being written is a return value, that is the result of a function such as "Parcelable someFunction() ", "void someFunction(out Parcelable) ", or "void someFunction(inout Parcelable) ". Some implementations may want to release resources at this point.
|
|
Public methods |
Int |
|
Boolean |
|
Network? |
Returns the Network on which the query should be sent or null if no network is specified.
|
String |
Returns the service type in format of dot-joint string of two labels.
|
String? |
Returns the subtype without the trailing ".
|
Int |
|
String |
|
Unit |
Flatten this object in to a Parcel.
|
Public methods
describeContents
fun describeContents(): Int
equals
fun equals(other: Any?): Boolean
Parameters |
obj |
the reference object with which to compare. |
Return |
Boolean |
true if this object is the same as the obj argument; false otherwise. |
getNetwork
fun getNetwork(): Network?
Returns the Network
on which the query should be sent or null
if no network is specified.
getServiceType
fun getServiceType(): String
Returns the service type in format of dot-joint string of two labels. For example, "_ipp._tcp" for internet printer and "_matter._tcp" for Matter operational device.
Return |
String |
This value cannot be null . |
getSubtype
fun getSubtype(): String?
Returns the subtype without the trailing "._sub" label or null
if no subtype is specified. For example, the return value will be "_printer" for subtype "_printer._sub".
hashCode
fun hashCode(): Int
Return |
Int |
a hash code value for this object. |
toString
fun toString(): String
Return |
String |
a string representation of the object. |
writeToParcel
fun writeToParcel(
dest: Parcel,
flags: Int
): Unit
Flatten this object in to a Parcel.
Properties