Enum UnassignPhoneNumbersLevel
- java.lang.Object
-
- java.lang.Enum<UnassignPhoneNumbersLevel>
-
- co.ecg.alpaca.toolkit.generated.enums.UnassignPhoneNumbersLevel
-
- All Implemented Interfaces:
Serializable
,Comparable<UnassignPhoneNumbersLevel>
public enum UnassignPhoneNumbersLevel extends Enum<UnassignPhoneNumbersLevel>
Indicates whether or not the user's DN(s) should be un-assigned from the group and/or service provider. When set to 'Group', the user's primary phone number, fax number and any alternate numbers, will be un-assigned from the group. When set to 'Service Provider', they will be un-assigned from the group and service provider. When omitted, the DN(s) will be left assigned to the group.- Author:
- AlpacaGenerator
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GROUP
SERVICEPROVIDER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UnassignPhoneNumbersLevel
get(String value)
static UnassignPhoneNumbersLevel[]
getArray(String[] values)
String
toString()
String
value()
static UnassignPhoneNumbersLevel
valueOf(String name)
Returns the enum constant of this type with the specified name.static UnassignPhoneNumbersLevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GROUP
public static final UnassignPhoneNumbersLevel GROUP
-
SERVICEPROVIDER
public static final UnassignPhoneNumbersLevel SERVICEPROVIDER
-
-
Method Detail
-
values
public static UnassignPhoneNumbersLevel[] 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 (UnassignPhoneNumbersLevel c : UnassignPhoneNumbersLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UnassignPhoneNumbersLevel 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<UnassignPhoneNumbersLevel>
-
get
public static UnassignPhoneNumbersLevel get(String value)
-
getArray
public static UnassignPhoneNumbersLevel[] getArray(String[] values)
-
-