Enum GenericNumber.Presentation
- java.lang.Object
-
- java.lang.Enum<GenericNumber.Presentation>
-
- com.opencloud.slee.resources.in.datatypes.cc.GenericNumber.Presentation
-
- All Implemented Interfaces:
Serializable
,Comparable<GenericNumber.Presentation>
- Enclosing class:
- GenericNumber
public static enum GenericNumber.Presentation extends Enum<GenericNumber.Presentation>
Enumeration of Address Presentation Restricted indicator constants.The API offered by this class is as if the type were specified in ASN.1 as follows.
Presentation ::= ENUMERATED { ALLOWED (0), RESTRICTED (1), ADDRESS_NOT_AVAILABLE (2), SPARE_3 (3) }
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDRESS_NOT_AVAILABLE
Address presentation restricted indicator value (2) corresponding to address not available (national use).ALLOWED
Address presentation restricted indicator value (0) corresponding to presentation allowed.RESTRICTED
Address presentation restricted indicator value (1) corresponding to presentation restricted.SPARE_3
Address presentation restricted indicator value (3) corresponding to spare.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GenericNumber.Presentation
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 GenericNumber.Presentation
valueOf(String name)
Returns the enum constant of this type with the specified name.static GenericNumber.Presentation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALLOWED
public static final GenericNumber.Presentation ALLOWED
Address presentation restricted indicator value (0) corresponding to presentation allowed.
-
RESTRICTED
public static final GenericNumber.Presentation RESTRICTED
Address presentation restricted indicator value (1) corresponding to presentation restricted.
-
ADDRESS_NOT_AVAILABLE
public static final GenericNumber.Presentation ADDRESS_NOT_AVAILABLE
Address presentation restricted indicator value (2) corresponding to address not available (national use). Note: if this presentation restricted indicator is used, the screening indicator is set toGenericNumber.Screening.NETWORK_PROVIDED
, the nature of address parameter is set to 0 (undefined spare value), the number plan parameter is set to 0 (unknown (national use)), the number is considered complete, but any address signal is omitted.
-
SPARE_3
public static final GenericNumber.Presentation SPARE_3
Address presentation restricted indicator value (3) corresponding to spare.
-
-
Method Detail
-
values
public static GenericNumber.Presentation[] 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 (GenericNumber.Presentation c : GenericNumber.Presentation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GenericNumber.Presentation 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 GenericNumber.Presentation 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
-
-