Package xt.audio
Enum Enums.XtSystem
- java.lang.Object
-
- java.lang.Enum<Enums.XtSystem>
-
- xt.audio.Enums.XtSystem
-
- All Implemented Interfaces:
Serializable
,Comparable<Enums.XtSystem>
- Enclosing interface:
- Enums
public static enum Enums.XtSystem extends Enum<Enums.XtSystem>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALSA
ASIO
DIRECT_SOUND
JACK
PULSE_AUDIO
WASAPI
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Enums.XtSystem
valueOf(String name)
Returns the enum constant of this type with the specified name.static Enums.XtSystem[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALSA
public static final Enums.XtSystem ALSA
-
ASIO
public static final Enums.XtSystem ASIO
-
JACK
public static final Enums.XtSystem JACK
-
WASAPI
public static final Enums.XtSystem WASAPI
-
PULSE_AUDIO
public static final Enums.XtSystem PULSE_AUDIO
-
DIRECT_SOUND
public static final Enums.XtSystem DIRECT_SOUND
-
-
Method Detail
-
values
public static Enums.XtSystem[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Enums.XtSystem c : Enums.XtSystem.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Enums.XtSystem valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-