Android APIs
public final class

ConnectionsStatusCodes

extends CommonStatusCodes
java.lang.Object
   ↳ com.google.android.gms.common.api.CommonStatusCodes
     ↳ com.google.android.gms.nearby.connection.ConnectionsStatusCodes

Class Overview

Status codes for nearby connections results.

Summary

Constants
int STATUS_ALREADY_ADVERTISING The app is already advertising; call stopAdvertising() before trying to advertise again.
int STATUS_ALREADY_CONNECTED_TO_ENDPOINT The app is already connected to the specified endpoint.
int STATUS_ALREADY_DISCOVERING The app is already discovering the specified application ID; call stopDiscovery() before trying to advertise again.
int STATUS_CONNECTION_REJECTED The remote endpoint rejected the connection request.
int STATUS_ERROR The operation failed, without any more information.
int STATUS_NETWORK_NOT_CONNECTED The device is not connected to a network (over Wifi or Ethernet).
int STATUS_NOT_CONNECTED_TO_ENDPOINT The remote endpoint is not connected; messages cannot be sent to it.
int STATUS_OK The operation was successful.
[Expand]
Inherited Constants
From class com.google.android.gms.common.api.CommonStatusCodes
Public Methods
static String getStatusCodeString(int statusCode)
Returns an untranslated debug (not user-friendly!) string based on the current status code.
[Expand]
Inherited Methods
From class com.google.android.gms.common.api.CommonStatusCodes
From class java.lang.Object

Constants

public static final int STATUS_ALREADY_ADVERTISING

The app is already advertising; call stopAdvertising() before trying to advertise again.

Constant Value: 8001 (0x00001f41)

public static final int STATUS_ALREADY_CONNECTED_TO_ENDPOINT

The app is already connected to the specified endpoint. Multiple connections to a remote endpoint cannot be maintained simultaneously.

Constant Value: 8003 (0x00001f43)

public static final int STATUS_ALREADY_DISCOVERING

The app is already discovering the specified application ID; call stopDiscovery() before trying to advertise again.

Constant Value: 8002 (0x00001f42)

public static final int STATUS_CONNECTION_REJECTED

The remote endpoint rejected the connection request.

Constant Value: 8004 (0x00001f44)

public static final int STATUS_ERROR

The operation failed, without any more information.

Constant Value: 13 (0x0000000d)

public static final int STATUS_NETWORK_NOT_CONNECTED

The device is not connected to a network (over Wifi or Ethernet). Prompt the user to connect their device when this status code is returned.

Constant Value: 8000 (0x00001f40)

public static final int STATUS_NOT_CONNECTED_TO_ENDPOINT

The remote endpoint is not connected; messages cannot be sent to it.

Constant Value: 8005 (0x00001f45)

public static final int STATUS_OK

The operation was successful.

Constant Value: 0 (0x00000000)

Public Methods

public static String getStatusCodeString (int statusCode)

Returns an untranslated debug (not user-friendly!) string based on the current status code.