Class PriorityIndication
- java.lang.Object
-
- org.jainslee.resources.diameter.rf.types.vcb0.PriorityIndication
-
- All Implemented Interfaces:
Serializable
,Enumerated
public class PriorityIndication extends Object implements Serializable, Enumerated
Java class to represent the PriorityIndication enumerated type. Documentation from the relevant specification: The Priority-Indication (AVP code 3006) is of type Enumerated, and identifies priority of the device trigger. The following values are defined:- Author:
- Open Cloud
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
_NON_PRIORITY
static int
_PRIORITY
static PriorityIndication
NON_PRIORITY
This value indicates that the device trigger has non-priority.static PriorityIndication
PRIORITY
This value indicates that the device trigger has priority.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PriorityIndication
fromInt(int type)
int
getValue()
Return the value of this instance of this enumerated type.String
toString()
-
-
-
Field Detail
-
_NON_PRIORITY
public static final int _NON_PRIORITY
- See Also:
- Constant Field Values
-
_PRIORITY
public static final int _PRIORITY
- See Also:
- Constant Field Values
-
NON_PRIORITY
public static final PriorityIndication NON_PRIORITY
This value indicates that the device trigger has non-priority.
-
PRIORITY
public static final PriorityIndication PRIORITY
This value indicates that the device trigger has priority. From 3GPP TS 29.368 V12.6.0 (2015-09)
-
-
Method Detail
-
fromInt
public static PriorityIndication fromInt(int type)
-
getValue
public int getValue()
Description copied from interface:Enumerated
Return the value of this instance of this enumerated type.- Specified by:
getValue
in interfaceEnumerated
- Returns:
- value
-
-