Enum CallingPlanService
- java.lang.Object
-
- java.lang.Enum<CallingPlanService>
-
- co.ecg.alpaca.toolkit.generated.enums.CallingPlanService
-
- All Implemented Interfaces:
Serializable
,Comparable<CallingPlanService>
public enum CallingPlanService extends Enum<CallingPlanService>
Choices for Calling Plan Service type- Author:
- AlpacaGenerator
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INCOMINGCALLINGPLAN
OUTGOINGCALLINGPLAN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CallingPlanService
get(String value)
static CallingPlanService[]
getArray(String[] values)
String
toString()
String
value()
static CallingPlanService
valueOf(String name)
Returns the enum constant of this type with the specified name.static CallingPlanService[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INCOMINGCALLINGPLAN
public static final CallingPlanService INCOMINGCALLINGPLAN
-
OUTGOINGCALLINGPLAN
public static final CallingPlanService OUTGOINGCALLINGPLAN
-
-
Method Detail
-
values
public static CallingPlanService[] 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 (CallingPlanService c : CallingPlanService.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CallingPlanService 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<CallingPlanService>
-
get
public static CallingPlanService get(String value)
-
getArray
public static CallingPlanService[] getArray(String[] values)
-
-