discord-jadx/app/src/main/java/com/discord/rtcconnection/enums/BluetoothBroadcastAction.java

29 lines
1.0 KiB
Java

package com.discord.rtcconnection.enums;
import kotlin.jvm.internal.DefaultConstructorMarker;
/* compiled from: BluetoothBroadcastAction.kt */
public enum BluetoothBroadcastAction {
HeadsetConnectionStateChanged("android.bluetooth.headset.profile.action.CONNECTION_STATE_CHANGED"),
HeadsetAudioStateChanged("android.bluetooth.headset.profile.action.AUDIO_STATE_CHANGED"),
AdapterConnectionStateChanged("android.bluetooth.adapter.action.CONNECTION_STATE_CHANGED"),
AdapterStateChanged("android.bluetooth.adapter.action.STATE_CHANGED"),
ActiveDeviceChanged("android.bluetooth.headset.profile.action.ACTIVE_DEVICE_CHANGED");
public static final a Companion = new a(null);
private final String action;
/* compiled from: BluetoothBroadcastAction.kt */
public static final class a {
public a(DefaultConstructorMarker defaultConstructorMarker) {
}
}
private BluetoothBroadcastAction(String str) {
this.action = str;
}
public final String getAction() {
return this.action;
}
}