public enum EcCalibratorStatus extends java.lang.Enum<EcCalibratorStatus>
Enum Constant | Description |
---|---|
Done |
The echo canceller calibration has been performed and produced an echo delay
measure. |
DoneNoEcho |
The echo canceller calibration has been performed and no echo has been
detected. |
Failed |
The echo canceller calibration process has failed.
|
InProgress |
The echo canceller calibration process is on going.
|
Modifier and Type | Field | Description |
---|---|---|
protected int |
mValue |
Modifier and Type | Method | Description |
---|---|---|
static EcCalibratorStatus |
fromInt(int value) |
|
protected static EcCalibratorStatus[] |
fromIntArray(int[] values) |
|
int |
toInt() |
|
protected static int[] |
toIntArray(EcCalibratorStatus[] values) |
|
static EcCalibratorStatus |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static EcCalibratorStatus[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EcCalibratorStatus InProgress
public static final EcCalibratorStatus Done
public static final EcCalibratorStatus Failed
public static final EcCalibratorStatus DoneNoEcho
public static EcCalibratorStatus[] values()
for (EcCalibratorStatus c : EcCalibratorStatus.values()) System.out.println(c);
public static EcCalibratorStatus 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 EcCalibratorStatus fromInt(int value) throws java.lang.RuntimeException
java.lang.RuntimeException
protected static EcCalibratorStatus[] fromIntArray(int[] values) throws java.lang.RuntimeException
java.lang.RuntimeException
protected static int[] toIntArray(EcCalibratorStatus[] values) throws java.lang.RuntimeException
java.lang.RuntimeException
public int toInt()