Enum CalledPartyBCDNumber.NumberType

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

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

    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),
         SHORT_CODE       (4),
         RESERVED_5       (5),
         RESERVED_6       (6),
         RESERVED_7       (7)
     }

    UNKNOWN is used when the user or network has no knowledge of the type of number, e.g. international number, national number, etc. In this case the address is organised according to the network dialling plan and prefix or escape digits might be present.

    INTERNATIONAL has no prefix or escape digits. The international format is acceptable by the MSC when the call is destined in the same country as the MSC.

    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.

    • Method Detail

      • values

        public static CalledPartyBCDNumber.NumberType[] 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.NumberType c : CalledPartyBCDNumber.NumberType.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.NumberType 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.NumberType 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