Package xt.audio
Enum Enums.XtServiceCaps
- java.lang.Object
-
- java.lang.Enum<Enums.XtServiceCaps>
-
- xt.audio.Enums.XtServiceCaps
-
- All Implemented Interfaces:
Serializable
,Comparable<Enums.XtServiceCaps>
- Enclosing interface:
- Enums
public static enum Enums.XtServiceCaps extends Enum<Enums.XtServiceCaps>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AGGREGATION
CHANNEL_MASK
CONTROL_PANEL
FULL_DUPLEX
LATENCY
NONE
TIME
XRUN_DETECTION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Enums.XtServiceCaps
valueOf(String name)
Returns the enum constant of this type with the specified name.static Enums.XtServiceCaps[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final Enums.XtServiceCaps NONE
-
TIME
public static final Enums.XtServiceCaps TIME
-
LATENCY
public static final Enums.XtServiceCaps LATENCY
-
FULL_DUPLEX
public static final Enums.XtServiceCaps FULL_DUPLEX
-
AGGREGATION
public static final Enums.XtServiceCaps AGGREGATION
-
CHANNEL_MASK
public static final Enums.XtServiceCaps CHANNEL_MASK
-
CONTROL_PANEL
public static final Enums.XtServiceCaps CONTROL_PANEL
-
XRUN_DETECTION
public static final Enums.XtServiceCaps XRUN_DETECTION
-
-
Method Detail
-
values
public static Enums.XtServiceCaps[] 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.XtServiceCaps c : Enums.XtServiceCaps.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.XtServiceCaps 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
-
-