FileDocCategorySizeDatePackage
AudioState.javaAPI DocAndroid 5.1 API1290Sat Mar 14 14:10:06 GMT 2015android.telecom

AudioState.java

package android.telecom;
public final class AudioState
  implements android.os.Parcelable
{
public  AudioState(boolean muted, int route, int supportedRouteMask) { throw new RuntimeException("Stub!"); }
public  AudioState(android.telecom.AudioState state) { throw new RuntimeException("Stub!"); }
public  boolean equals(java.lang.Object obj) { throw new RuntimeException("Stub!"); }
public  java.lang.String toString() { throw new RuntimeException("Stub!"); }
public  int describeContents() { throw new RuntimeException("Stub!"); }
public  void writeToParcel(android.os.Parcel destination, int flags) { throw new RuntimeException("Stub!"); }
public  boolean isMuted() { throw new RuntimeException("Stub!"); }
public  int getRoute() { throw new RuntimeException("Stub!"); }
public  int getSupportedRouteMask() { throw new RuntimeException("Stub!"); }
public static final android.os.Parcelable.Creator<android.telecom.AudioState> CREATOR;
public static final int ROUTE_BLUETOOTH = 2;
public static final int ROUTE_EARPIECE = 1;
public static final int ROUTE_SPEAKER = 8;
public static final int ROUTE_WIRED_HEADSET = 4;
public static final int ROUTE_WIRED_OR_EARPIECE = 5;
public final boolean isMuted;
public final int route;
public final int supportedRouteMask;
static { CREATOR = null; }
}