public enum EcCalibratorStatus extends java.lang.Enum<EcCalibratorStatus>
| Enum Constant and 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 and Description |
|---|---|
protected int |
mValue |
| Modifier and Type | Method and Description |
|---|---|
static EcCalibratorStatus |
fromInt(int value) |
int |
toInt() |
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.RuntimeExceptionpublic int toInt()