to top
Android APIs
public final class

NsdServiceInfo

extends Object
implements Parcelable
java.lang.Object
   ↳ android.net.nsd.NsdServiceInfo

Class Overview

A class representing service information for network service discovery

See Also

Summary

[Expand]
Inherited Constants
From interface android.os.Parcelable
Fields
public static final Creator<NsdServiceInfo> CREATOR Implement the Parcelable interface
Public Constructors
NsdServiceInfo()
Public Methods
int describeContents()
Implement the Parcelable interface
InetAddress getHost()
Get the host address.
int getPort()
Get port number.
String getServiceName()
Get the service name
String getServiceType()
Get the service type
void setHost(InetAddress s)
Set the host address
void setPort(int p)
Set port number
void setServiceName(String s)
Set the service name
void setServiceType(String s)
Set the service type
String toString()
Returns a string containing a concise, human-readable description of this object.
void writeToParcel(Parcel dest, int flags)
Implement the Parcelable interface
[Expand]
Inherited Methods
From class java.lang.Object
From interface android.os.Parcelable

Fields

public static final Creator<NsdServiceInfo> CREATOR

Added in API level 16

Implement the Parcelable interface

Public Constructors

public NsdServiceInfo ()

Added in API level 16

Public Methods

public int describeContents ()

Added in API level 16

Implement the Parcelable interface

Returns
  • a bitmask indicating the set of special object types marshalled by the Parcelable.

public InetAddress getHost ()

Added in API level 16

Get the host address. The host address is valid for a resolved service.

public int getPort ()

Added in API level 16

Get port number. The port number is valid for a resolved service.

public String getServiceName ()

Added in API level 16

Get the service name

public String getServiceType ()

Added in API level 16

Get the service type

public void setHost (InetAddress s)

Added in API level 16

Set the host address

public void setPort (int p)

Added in API level 16

Set port number

public void setServiceName (String s)

Added in API level 16

Set the service name

public void setServiceType (String s)

Added in API level 16

Set the service type

public String toString ()

Added in API level 16

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.

Returns
  • a printable representation of this object.

public void writeToParcel (Parcel dest, int flags)

Added in API level 16

Implement the Parcelable interface

Parameters
dest 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.