Enum AutoAttendantKeyAction
- java.lang.Object
-
- java.lang.Enum<AutoAttendantKeyAction>
-
- co.ecg.alpaca.toolkit.generated.enums.AutoAttendantKeyAction
-
- All Implemented Interfaces:
Serializable,Comparable<AutoAttendantKeyAction>
public enum AutoAttendantKeyAction extends Enum<AutoAttendantKeyAction>
The action of Auto Attendant key. The following data elements are only used in AS data mode and ignored in XS data mode: Transfer To Mailbox Play Announcement Transfer To Submenu Return to Previous Menu The following data elements are only valid for Standard Auto Attendants: Transfer To Submenu Return to Previous Menu The following data elements are only valid for submenus: Return to Previous Menu- Author:
- AlpacaGenerator
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXITEXTENSIONDIALINGNAMEDIALINGPLAYANNOUNCEMENTREPEATMENURETURNTOPREVIOUSMENUTRANSFERTOMAILBOXTRANSFERTOOPERATORTRANSFERTOSUBMENUTRANSFERWITHOUTPROMPTTRANSFERWITHPROMPT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AutoAttendantKeyActionget(String value)static AutoAttendantKeyAction[]getArray(String[] values)StringtoString()Stringvalue()static AutoAttendantKeyActionvalueOf(String name)Returns the enum constant of this type with the specified name.static AutoAttendantKeyAction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TRANSFERWITHPROMPT
public static final AutoAttendantKeyAction TRANSFERWITHPROMPT
-
TRANSFERWITHOUTPROMPT
public static final AutoAttendantKeyAction TRANSFERWITHOUTPROMPT
-
TRANSFERTOOPERATOR
public static final AutoAttendantKeyAction TRANSFERTOOPERATOR
-
NAMEDIALING
public static final AutoAttendantKeyAction NAMEDIALING
-
EXTENSIONDIALING
public static final AutoAttendantKeyAction EXTENSIONDIALING
-
REPEATMENU
public static final AutoAttendantKeyAction REPEATMENU
-
EXIT
public static final AutoAttendantKeyAction EXIT
-
TRANSFERTOMAILBOX
public static final AutoAttendantKeyAction TRANSFERTOMAILBOX
-
TRANSFERTOSUBMENU
public static final AutoAttendantKeyAction TRANSFERTOSUBMENU
-
RETURNTOPREVIOUSMENU
public static final AutoAttendantKeyAction RETURNTOPREVIOUSMENU
-
PLAYANNOUNCEMENT
public static final AutoAttendantKeyAction PLAYANNOUNCEMENT
-
-
Method Detail
-
values
public static AutoAttendantKeyAction[] 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 (AutoAttendantKeyAction c : AutoAttendantKeyAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AutoAttendantKeyAction 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:
toStringin classEnum<AutoAttendantKeyAction>
-
get
public static AutoAttendantKeyAction get(String value)
-
getArray
public static AutoAttendantKeyAction[] getArray(String[] values)
-
-