FileDocCategorySizeDatePackage
Connection.javaAPI DocAndroid 5.1 API5732Sat Mar 14 14:10:00 GMT 2015android.telecom

Connection.java

package android.telecom;
public abstract class Connection
  implements android.telecom.IConferenceable
{
public  Connection() { throw new RuntimeException("Stub!"); }
public static  java.lang.String capabilitiesToString(int capabilities) { throw new RuntimeException("Stub!"); }
public final  android.net.Uri getAddress() { throw new RuntimeException("Stub!"); }
public final  int getAddressPresentation() { throw new RuntimeException("Stub!"); }
public final  java.lang.String getCallerDisplayName() { throw new RuntimeException("Stub!"); }
public final  int getCallerDisplayNamePresentation() { throw new RuntimeException("Stub!"); }
public final  int getState() { throw new RuntimeException("Stub!"); }
public final  android.telecom.AudioState getAudioState() { throw new RuntimeException("Stub!"); }
public final  android.telecom.Conference getConference() { throw new RuntimeException("Stub!"); }
public final  boolean isRingbackRequested() { throw new RuntimeException("Stub!"); }
public final  boolean getAudioModeIsVoip() { throw new RuntimeException("Stub!"); }
public final  android.telecom.StatusHints getStatusHints() { throw new RuntimeException("Stub!"); }
public final  android.telecom.DisconnectCause getDisconnectCause() { throw new RuntimeException("Stub!"); }
public static  java.lang.String stateToString(int state) { throw new RuntimeException("Stub!"); }
public final  int getConnectionCapabilities() { throw new RuntimeException("Stub!"); }
@java.lang.Deprecated()
public final  int getCallCapabilities() { throw new RuntimeException("Stub!"); }
public final  void setAddress(android.net.Uri address, int presentation) { throw new RuntimeException("Stub!"); }
public final  void setCallerDisplayName(java.lang.String callerDisplayName, int presentation) { throw new RuntimeException("Stub!"); }
public final  void setActive() { throw new RuntimeException("Stub!"); }
public final  void setRinging() { throw new RuntimeException("Stub!"); }
public final  void setInitializing() { throw new RuntimeException("Stub!"); }
public final  void setInitialized() { throw new RuntimeException("Stub!"); }
public final  void setDialing() { throw new RuntimeException("Stub!"); }
public final  void setOnHold() { throw new RuntimeException("Stub!"); }
public final  void setDisconnected(android.telecom.DisconnectCause disconnectCause) { throw new RuntimeException("Stub!"); }
public final  void setPostDialWait(java.lang.String remaining) { throw new RuntimeException("Stub!"); }
public final  void setRingbackRequested(boolean ringback) { throw new RuntimeException("Stub!"); }
@java.lang.Deprecated()
public final  void setCallCapabilities(int connectionCapabilities) { throw new RuntimeException("Stub!"); }
public final  void setConnectionCapabilities(int connectionCapabilities) { throw new RuntimeException("Stub!"); }
public final  void destroy() { throw new RuntimeException("Stub!"); }
public final  void setAudioModeIsVoip(boolean isVoip) { throw new RuntimeException("Stub!"); }
public final  void setStatusHints(android.telecom.StatusHints statusHints) { throw new RuntimeException("Stub!"); }
public final  void setConferenceableConnections(java.util.List<android.telecom.Connection> conferenceableConnections) { throw new RuntimeException("Stub!"); }
public final  void setConferenceables(java.util.List<android.telecom.IConferenceable> conferenceables) { throw new RuntimeException("Stub!"); }
public final  java.util.List<android.telecom.IConferenceable> getConferenceables() { throw new RuntimeException("Stub!"); }
public final  void setConnectionService(android.telecom.ConnectionService connectionService) { throw new RuntimeException("Stub!"); }
public  void onAudioStateChanged(android.telecom.AudioState state) { throw new RuntimeException("Stub!"); }
public  void onStateChanged(int state) { throw new RuntimeException("Stub!"); }
public  void onPlayDtmfTone(char c) { throw new RuntimeException("Stub!"); }
public  void onStopDtmfTone() { throw new RuntimeException("Stub!"); }
public  void onDisconnect() { throw new RuntimeException("Stub!"); }
public  void onSeparate() { throw new RuntimeException("Stub!"); }
public  void onAbort() { throw new RuntimeException("Stub!"); }
public  void onHold() { throw new RuntimeException("Stub!"); }
public  void onUnhold() { throw new RuntimeException("Stub!"); }
public  void onAnswer() { throw new RuntimeException("Stub!"); }
public  void onReject() { throw new RuntimeException("Stub!"); }
public  void onPostDialContinue(boolean proceed) { throw new RuntimeException("Stub!"); }
public static  android.telecom.Connection createFailedConnection(android.telecom.DisconnectCause disconnectCause) { throw new RuntimeException("Stub!"); }
public static  android.telecom.Connection createCanceledConnection() { throw new RuntimeException("Stub!"); }
protected  void notifyConferenceStarted() { throw new RuntimeException("Stub!"); }
public static final int CAPABILITY_DISCONNECT_FROM_CONFERENCE = 8192;
public static final int CAPABILITY_HOLD = 1;
public static final int CAPABILITY_MANAGE_CONFERENCE = 128;
public static final int CAPABILITY_MERGE_CONFERENCE = 4;
public static final int CAPABILITY_MUTE = 64;
public static final int CAPABILITY_RESPOND_VIA_TEXT = 32;
public static final int CAPABILITY_SEPARATE_FROM_CONFERENCE = 4096;
public static final int CAPABILITY_SUPPORT_HOLD = 2;
public static final int CAPABILITY_SWAP_CONFERENCE = 8;
public static final int STATE_ACTIVE = 4;
public static final int STATE_DIALING = 3;
public static final int STATE_DISCONNECTED = 6;
public static final int STATE_HOLDING = 5;
public static final int STATE_INITIALIZING = 0;
public static final int STATE_NEW = 1;
public static final int STATE_RINGING = 2;
}