Enum HistoricalMetricName
- java.lang.Object
-
- java.lang.Enum<HistoricalMetricName>
-
- software.amazon.awssdk.services.connect.model.HistoricalMetricName
-
- All Implemented Interfaces:
Serializable,Comparable<HistoricalMetricName>
@Generated("software.amazon.awssdk:codegen") public enum HistoricalMetricName extends Enum<HistoricalMetricName>
The historical metric names.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static HistoricalMetricNamefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<HistoricalMetricName>knownValues()StringtoString()static HistoricalMetricNamevalueOf(String name)Returns the enum constant of this type with the specified name.static HistoricalMetricName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTACTS_QUEUED
public static final HistoricalMetricName CONTACTS_QUEUED
-
CONTACTS_HANDLED
public static final HistoricalMetricName CONTACTS_HANDLED
-
CONTACTS_ABANDONED
public static final HistoricalMetricName CONTACTS_ABANDONED
-
CONTACTS_CONSULTED
public static final HistoricalMetricName CONTACTS_CONSULTED
-
CONTACTS_AGENT_HUNG_UP_FIRST
public static final HistoricalMetricName CONTACTS_AGENT_HUNG_UP_FIRST
-
CONTACTS_HANDLED_INCOMING
public static final HistoricalMetricName CONTACTS_HANDLED_INCOMING
-
CONTACTS_HANDLED_OUTBOUND
public static final HistoricalMetricName CONTACTS_HANDLED_OUTBOUND
-
CONTACTS_HOLD_ABANDONS
public static final HistoricalMetricName CONTACTS_HOLD_ABANDONS
-
CONTACTS_TRANSFERRED_IN
public static final HistoricalMetricName CONTACTS_TRANSFERRED_IN
-
CONTACTS_TRANSFERRED_OUT
public static final HistoricalMetricName CONTACTS_TRANSFERRED_OUT
-
CONTACTS_TRANSFERRED_IN_FROM_QUEUE
public static final HistoricalMetricName CONTACTS_TRANSFERRED_IN_FROM_QUEUE
-
CONTACTS_TRANSFERRED_OUT_FROM_QUEUE
public static final HistoricalMetricName CONTACTS_TRANSFERRED_OUT_FROM_QUEUE
-
CONTACTS_MISSED
public static final HistoricalMetricName CONTACTS_MISSED
-
CALLBACK_CONTACTS_HANDLED
public static final HistoricalMetricName CALLBACK_CONTACTS_HANDLED
-
API_CONTACTS_HANDLED
public static final HistoricalMetricName API_CONTACTS_HANDLED
-
OCCUPANCY
public static final HistoricalMetricName OCCUPANCY
-
HANDLE_TIME
public static final HistoricalMetricName HANDLE_TIME
-
AFTER_CONTACT_WORK_TIME
public static final HistoricalMetricName AFTER_CONTACT_WORK_TIME
-
QUEUED_TIME
public static final HistoricalMetricName QUEUED_TIME
-
ABANDON_TIME
public static final HistoricalMetricName ABANDON_TIME
-
QUEUE_ANSWER_TIME
public static final HistoricalMetricName QUEUE_ANSWER_TIME
-
HOLD_TIME
public static final HistoricalMetricName HOLD_TIME
-
INTERACTION_TIME
public static final HistoricalMetricName INTERACTION_TIME
-
INTERACTION_AND_HOLD_TIME
public static final HistoricalMetricName INTERACTION_AND_HOLD_TIME
-
SERVICE_LEVEL
public static final HistoricalMetricName SERVICE_LEVEL
-
UNKNOWN_TO_SDK_VERSION
public static final HistoricalMetricName UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static HistoricalMetricName[] 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 (HistoricalMetricName c : HistoricalMetricName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HistoricalMetricName 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<HistoricalMetricName>
-
fromValue
public static HistoricalMetricName fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- HistoricalMetricName corresponding to the value
-
knownValues
public static Set<HistoricalMetricName> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownHistoricalMetricNames
-
-