Enum CalledPartyBCDNumber.SMSNumberType

  • All Implemented Interfaces:
    Serializable, Comparable<CalledPartyBCDNumber.SMSNumberType>
    Enclosing class:
    CalledPartyBCDNumber

    public static enum CalledPartyBCDNumber.SMSNumberType
    extends Enum<CalledPartyBCDNumber.SMSNumberType>
    Enumeration of type-of-number indicator constants including alphanumeric.

    The API offered by this class is as if the type were specified in ASN.1 as follows.

     NumberType ::= ENUMERATED {
         UNKNOWN          (0),
         INTERNATIONAL    (1),
         NATIONAL         (2),
         NETWORK_SPECIFIC (3),
         SUBSCRIBER       (4),
         ALPHANUMERIC     (5),
         RESERVED_6       (6),
         RESERVED_7       (7)
     }

    UNKNOWN is used when the user or network has no a priori information about the numbering plan. In this case, the address is organized according to the network dialling plan, e.g. prefix or escape digits might be present.

    INTERNATIONAL shall be accepted also when the message is destined to a recipient in the same country as the MSC or as the SGSN.

    NATIONAL has no prefix or escape digits.

    NETWORK_SPECIFIC is used to indicate an administration/service number specific to the serving network, e.g. used to access an operator.

    SUBSCRIBER is used when a specific short number representation is stored in one or more SCs as part of a higher layer application.

    • Method Detail

      • values

        public static CalledPartyBCDNumber.SMSNumberType[] 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 (CalledPartyBCDNumber.SMSNumberType c : CalledPartyBCDNumber.SMSNumberType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CalledPartyBCDNumber.SMSNumberType 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
      • intValue

        public int intValue()
        Gets the integer ASN.1 encoded value of this enumeration constant.
        Returns:
        encoded value
      • fromValue

        public static CalledPartyBCDNumber.SMSNumberType fromValue​(int value)
        Returns the enumeration constant for a given encoded value.
        Parameters:
        value - encoded value
        Returns:
        the appropriate enumeration constant for the encoded value
        Throws:
        IllegalArgumentException - if there is no enumeration constant with the given encoded value