Enum CalledPartyBCDNumber.NumberType
- java.lang.Object
-
- java.lang.Enum<CalledPartyBCDNumber.NumberType>
-
- com.opencloud.slee.resources.in.datatypes.cc.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.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INTERNATIONAL
Type of number indicator value (1) corresponding to an international number.NATIONAL
Type of number indicator value (2) corresponding to a national number.NETWORK_SPECIFIC
Type of number indicator value (3) corresponding to a network-specific number.RESERVED_5
Type of number indicator value (5) corresponding to reserved.RESERVED_6
Type of number indicator value (6) corresponding to reserved.RESERVED_7
Type of number indicator value (7) corresponding to reserved.SHORT_CODE
Type of number indicator value (4) corresponding to dedicated access, short code.UNKNOWN
Type of number indicator value (0) corresponding to unknown.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CalledPartyBCDNumber.NumberType
fromValue(int value)
Returns the enumeration constant for a given encoded value.int
intValue()
Gets the integer ASN.1 encoded value of this enumeration constant.static CalledPartyBCDNumber.NumberType
valueOf(String name)
Returns the enum constant of this type with the specified name.static CalledPartyBCDNumber.NumberType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final CalledPartyBCDNumber.NumberType UNKNOWN
Type of number indicator value (0) corresponding to unknown.
-
INTERNATIONAL
public static final CalledPartyBCDNumber.NumberType INTERNATIONAL
Type of number indicator value (1) corresponding to an international number.
-
NATIONAL
public static final CalledPartyBCDNumber.NumberType NATIONAL
Type of number indicator value (2) corresponding to a national number.
-
NETWORK_SPECIFIC
public static final CalledPartyBCDNumber.NumberType NETWORK_SPECIFIC
Type of number indicator value (3) corresponding to a network-specific number.
-
SHORT_CODE
public static final CalledPartyBCDNumber.NumberType SHORT_CODE
Type of number indicator value (4) corresponding to dedicated access, short code.
-
RESERVED_5
public static final CalledPartyBCDNumber.NumberType RESERVED_5
Type of number indicator value (5) corresponding to reserved.
-
RESERVED_6
public static final CalledPartyBCDNumber.NumberType RESERVED_6
Type of number indicator value (6) corresponding to reserved.
-
RESERVED_7
public static final CalledPartyBCDNumber.NumberType RESERVED_7
Type of number indicator value (7) corresponding to reserved.
-
-
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 nameNullPointerException
- 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
-
-