public enum SessionTimerModeType extends java.lang.Enum<SessionTimerModeType>
Enum Constant and Description |
---|
Disabled
Do not offer session expiry
|
Local
The local peer (we) should do the refreshes (changes depending on call type)
|
Remote
The remote peer (they) should do the refreshes (also changes depending on call type)
|
UAC
User Agent Client (Caller) should do the refreshes
|
UAS
User Agent Server (Callee) should do the refreshes
|
Modifier and Type | Method and Description |
---|---|
static SessionTimerModeType |
fromInt(int i) |
static SessionTimerModeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SessionTimerModeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SessionTimerModeType UAC
public static final SessionTimerModeType UAS
public static final SessionTimerModeType Local
public static final SessionTimerModeType Remote
public static final SessionTimerModeType Disabled
public static SessionTimerModeType[] values()
for (SessionTimerModeType c : SessionTimerModeType.values()) System.out.println(c);
public static SessionTimerModeType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static SessionTimerModeType fromInt(int i)