Enum CallCenterReportAbadonedCallsInServiceLevel
- java.lang.Object
-
- java.lang.Enum<CallCenterReportAbadonedCallsInServiceLevel>
-
- co.ecg.alpaca.toolkit.generated.enums.CallCenterReportAbadonedCallsInServiceLevel
-
- All Implemented Interfaces:
Serializable
,Comparable<CallCenterReportAbadonedCallsInServiceLevel>
public enum CallCenterReportAbadonedCallsInServiceLevel extends Enum<CallCenterReportAbadonedCallsInServiceLevel>
The call center enhanced reporting abadoned calls possible values for service level thresholds- Author:
- AlpacaGenerator
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IGNOREALLABANDONEDCALLS
INCLUDEABANDONEDCALLSEXCEPTBEFOREENTRANCECOMPLETES
INCLUDEABANDONEDCALLSEXCEPTININTERVAL
INCLUDEALLABANDONEDCALLS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CallCenterReportAbadonedCallsInServiceLevel
get(String value)
static CallCenterReportAbadonedCallsInServiceLevel[]
getArray(String[] values)
String
toString()
String
value()
static CallCenterReportAbadonedCallsInServiceLevel
valueOf(String name)
Returns the enum constant of this type with the specified name.static CallCenterReportAbadonedCallsInServiceLevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IGNOREALLABANDONEDCALLS
public static final CallCenterReportAbadonedCallsInServiceLevel IGNOREALLABANDONEDCALLS
-
INCLUDEALLABANDONEDCALLS
public static final CallCenterReportAbadonedCallsInServiceLevel INCLUDEALLABANDONEDCALLS
-
INCLUDEABANDONEDCALLSEXCEPTBEFOREENTRANCECOMPLETES
public static final CallCenterReportAbadonedCallsInServiceLevel INCLUDEABANDONEDCALLSEXCEPTBEFOREENTRANCECOMPLETES
-
INCLUDEABANDONEDCALLSEXCEPTININTERVAL
public static final CallCenterReportAbadonedCallsInServiceLevel INCLUDEABANDONEDCALLSEXCEPTININTERVAL
-
-
Method Detail
-
values
public static CallCenterReportAbadonedCallsInServiceLevel[] 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 (CallCenterReportAbadonedCallsInServiceLevel c : CallCenterReportAbadonedCallsInServiceLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CallCenterReportAbadonedCallsInServiceLevel 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<CallCenterReportAbadonedCallsInServiceLevel>
-
get
public static CallCenterReportAbadonedCallsInServiceLevel get(String value)
-
getArray
public static CallCenterReportAbadonedCallsInServiceLevel[] getArray(String[] values)
-
-