Enum GroupDialPlanPolicySettingLevel
- java.lang.Object
-
- java.lang.Enum<GroupDialPlanPolicySettingLevel>
-
- co.ecg.alpaca.toolkit.generated.enums.GroupDialPlanPolicySettingLevel
-
- All Implemented Interfaces:
Serializable
,Comparable<GroupDialPlanPolicySettingLevel>
public enum GroupDialPlanPolicySettingLevel extends Enum<GroupDialPlanPolicySettingLevel>
Choices for the group Dial Plan Policy to decide which type of settings shall be used. Notes: Choice cannot be 'sp' or 'group' if Service Provider or group does not have public digit map set.- Author:
- AlpacaGenerator
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GROUP
SERVICEPROVIDER
SYSTEM
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GroupDialPlanPolicySettingLevel
get(String value)
static GroupDialPlanPolicySettingLevel[]
getArray(String[] values)
String
toString()
String
value()
static GroupDialPlanPolicySettingLevel
valueOf(String name)
Returns the enum constant of this type with the specified name.static GroupDialPlanPolicySettingLevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SYSTEM
public static final GroupDialPlanPolicySettingLevel SYSTEM
-
SERVICEPROVIDER
public static final GroupDialPlanPolicySettingLevel SERVICEPROVIDER
-
GROUP
public static final GroupDialPlanPolicySettingLevel GROUP
-
-
Method Detail
-
values
public static GroupDialPlanPolicySettingLevel[] 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 (GroupDialPlanPolicySettingLevel c : GroupDialPlanPolicySettingLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GroupDialPlanPolicySettingLevel 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<GroupDialPlanPolicySettingLevel>
-
get
public static GroupDialPlanPolicySettingLevel get(String value)
-
getArray
public static GroupDialPlanPolicySettingLevel[] getArray(String[] values)
-
-