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

? Examples
NsdServiceInfo()
Public Methods

? Examples
int describeContents()
Implement the Parcelable interface

? Examples
InetAddress getHost()
Get the host address.

? Examples
int getPort()
Get port number.

? Examples
String getServiceName()
Get the service name

? Examples
String getServiceType()
Get the service type

? Examples
void setHost( InetAddress s)
Set the host address

? Examples
void setPort(int p)
Set port number

? Examples
void setServiceName( String s)
Set the service name

? Examples
void setServiceType( String s)
Set the service type

? Examples
String toString()
Returns a string containing a concise, human-readable description of this object.

? Examples
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.
No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.