/**@class android.net.LocalSocketAddress.Namespace @extends java.lang.Enum The namespace that this address exists in. See also include/cutils/sockets.h ANDROID_SOCKET_NAMESPACE_* */ var Namespace = { /**A socket in the Linux abstract namespace */ ABSTRACT : "null", /** A socket in the Android reserved namespace in /dev/socket. Only the init process may create a socket here. */ RESERVED : "null", /** A socket named with a normal filesystem path. */ FILESYSTEM : "null", /** */ values : function( ) {}, /** */ valueOf : function( ) {}, };