public enum AudioOutputDeviceType extends java.lang.Enum<AudioOutputDeviceType>
Enum Constant and Description |
---|
Disable
Disable output
|
Normal
Use the normal output device
|
Ringing
Use the ringing output device
|
Modifier and Type | Method and Description |
---|---|
static AudioOutputDeviceType |
fromInt(int i) |
static AudioOutputDeviceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AudioOutputDeviceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AudioOutputDeviceType Normal
public static final AudioOutputDeviceType Ringing
public static final AudioOutputDeviceType Disable
public static AudioOutputDeviceType[] values()
for (AudioOutputDeviceType c : AudioOutputDeviceType.values()) System.out.println(c);
public static AudioOutputDeviceType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static AudioOutputDeviceType fromInt(int i)