Package com.opencloud.sentinel.common
Enum SessionType
- java.lang.Object
-
- java.lang.Enum<SessionType>
-
- com.opencloud.sentinel.common.SessionType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SessionType>
public enum SessionType extends java.lang.Enum<SessionType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description call
diameter_trigger
diametermediation
http_trigger
sip_trigger
sipaccesstransfer
sipcall
sms
ss7_trigger
unset
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SessionType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SessionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
call
public static final SessionType call
-
sms
public static final SessionType sms
-
diametermediation
public static final SessionType diametermediation
-
sipcall
public static final SessionType sipcall
-
sipaccesstransfer
public static final SessionType sipaccesstransfer
-
diameter_trigger
public static final SessionType diameter_trigger
-
sip_trigger
public static final SessionType sip_trigger
-
ss7_trigger
public static final SessionType ss7_trigger
-
http_trigger
public static final SessionType http_trigger
-
unset
public static final SessionType unset
-
-
Method Detail
-
values
public static SessionType[] 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 (SessionType c : SessionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SessionType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-