Enum SharedCallAppearanceBridgeWarningTone
- java.lang.Object
-
- java.lang.Enum<SharedCallAppearanceBridgeWarningTone>
-
- co.ecg.alpaca.toolkit.generated.enums.SharedCallAppearanceBridgeWarningTone
-
- All Implemented Interfaces:
Serializable
,Comparable<SharedCallAppearanceBridgeWarningTone>
public enum SharedCallAppearanceBridgeWarningTone extends Enum<SharedCallAppearanceBridgeWarningTone>
Warning tone types for Shared Call Appearance. The bridge warning tone types are none, barge-in, barge-in repeat.- Author:
- AlpacaGenerator
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BARGEIN
BARGEINANDREPEAT
NONE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SharedCallAppearanceBridgeWarningTone
get(String value)
static SharedCallAppearanceBridgeWarningTone[]
getArray(String[] values)
String
toString()
String
value()
static SharedCallAppearanceBridgeWarningTone
valueOf(String name)
Returns the enum constant of this type with the specified name.static SharedCallAppearanceBridgeWarningTone[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final SharedCallAppearanceBridgeWarningTone NONE
-
BARGEIN
public static final SharedCallAppearanceBridgeWarningTone BARGEIN
-
BARGEINANDREPEAT
public static final SharedCallAppearanceBridgeWarningTone BARGEINANDREPEAT
-
-
Method Detail
-
values
public static SharedCallAppearanceBridgeWarningTone[] 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 (SharedCallAppearanceBridgeWarningTone c : SharedCallAppearanceBridgeWarningTone.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SharedCallAppearanceBridgeWarningTone 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
-
value
public String value()
-
toString
public String toString()
- Overrides:
toString
in classEnum<SharedCallAppearanceBridgeWarningTone>
-
get
public static SharedCallAppearanceBridgeWarningTone get(String value)
-
getArray
public static SharedCallAppearanceBridgeWarningTone[] getArray(String[] values)
-
-