Enum CallCenterReportIntervalTimeUnit
- java.lang.Object
-
- java.lang.Enum<CallCenterReportIntervalTimeUnit>
-
- co.ecg.alpaca.toolkit.generated.enums.CallCenterReportIntervalTimeUnit
-
- All Implemented Interfaces:
Serializable,Comparable<CallCenterReportIntervalTimeUnit>
public enum CallCenterReportIntervalTimeUnit extends Enum<CallCenterReportIntervalTimeUnit>
The call center enhanced reporting report interval time unit.- Author:
- AlpacaGenerator
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CallCenterReportIntervalTimeUnitget(String value)static CallCenterReportIntervalTimeUnit[]getArray(String[] values)StringtoString()Stringvalue()static CallCenterReportIntervalTimeUnitvalueOf(String name)Returns the enum constant of this type with the specified name.static CallCenterReportIntervalTimeUnit[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HOUR
public static final CallCenterReportIntervalTimeUnit HOUR
-
DAY
public static final CallCenterReportIntervalTimeUnit DAY
-
WEEK
public static final CallCenterReportIntervalTimeUnit WEEK
-
MONTH
public static final CallCenterReportIntervalTimeUnit MONTH
-
YEAR
public static final CallCenterReportIntervalTimeUnit YEAR
-
-
Method Detail
-
values
public static CallCenterReportIntervalTimeUnit[] 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 (CallCenterReportIntervalTimeUnit c : CallCenterReportIntervalTimeUnit.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CallCenterReportIntervalTimeUnit 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<CallCenterReportIntervalTimeUnit>
-
get
public static CallCenterReportIntervalTimeUnit get(String value)
-
getArray
public static CallCenterReportIntervalTimeUnit[] getArray(String[] values)
-
-