public enum RTSTimeOutEvent extends java.lang.Enum<RTSTimeOutEvent>
Enum Constant and Description |
---|
INCOMING_TIMEOUT
Incoming session timeout
|
OUTGOING_TIMEOUT
Outgoing session timeout
|
Modifier and Type | Method and Description |
---|---|
static RTSTimeOutEvent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RTSTimeOutEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RTSTimeOutEvent OUTGOING_TIMEOUT
public static final RTSTimeOutEvent INCOMING_TIMEOUT
public static RTSTimeOutEvent[] values()
for (RTSTimeOutEvent c : RTSTimeOutEvent.values()) System.out.println(c);
public static RTSTimeOutEvent 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 null