Enum 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
    • 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 name
        NullPointerException - if the argument is null
      • value

        public String value()