Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public class

LocalSocketAddress

extends Object
java.lang.Object
   ↳ android.net.LocalSocketAddress

Class Overview

A UNIX-domain (AF_LOCAL) socket address. For use with android.net.LocalSocket and android.net.LocalServerSocket. On the Android system, these names refer to names in the Linux abstract (non-filesystem) UNIX domain namespace.

Summary

Nested Classes
enum LocalSocketAddress.Namespace The namespace that this address exists in. 
Public Constructors
LocalSocketAddress ( String name, LocalSocketAddress.Namespace namespace)
Creates an instance with a given name.
LocalSocketAddress ( String name)
Creates an instance with a given name in the ABSTRACT namespace
Public Methods
String getName ()
Retrieves the string name of this address
LocalSocketAddress.Namespace getNamespace ()
Returns the namespace used by this address.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public LocalSocketAddress ( String name, LocalSocketAddress.Namespace namespace)

Added in API level 1

Creates an instance with a given name.

Parameters
name non-null name
namespace namespace the name should be created in.

public LocalSocketAddress ( String name)

Added in API level 1

Creates an instance with a given name in the ABSTRACT namespace

Parameters
name non-null name

Public Methods

public String getName ()

Added in API level 1

Retrieves the string name of this address

Returns
  • string name

public LocalSocketAddress.Namespace getNamespace ()

Added in API level 1

Returns the namespace used by this address.

Returns
  • non-null a namespace