protected static enum TransactionImpl.Timer extends java.lang.Enum<TransactionImpl.Timer>
| Enum Constant and Description |
|---|
A
INVITE request retransmit, for UDP only
|
B
INVITE transaction timeout
|
D
Wait time for response retransmits
|
E
non-INVITE request retransmit interval UDP only
|
F
non-INVITE transaction timeout timer
|
G
INVITE response retransmit interval
|
H
Wait time for ACK receipt
|
I
Wait time for ACK retransmits
|
J
Wait time for non-INVITE request
|
K
Wait time for response retransmits
|
L
Wait time for accepted INVITE request retransmits
|
M
Wait time for retransmission of 2xx to INVITE or additional 2xx
from other branches of a forked INVITE
|
| Modifier and Type | Method and Description |
|---|---|
static TransactionImpl.Timer |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransactionImpl.Timer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionImpl.Timer A
public static final TransactionImpl.Timer B
public static final TransactionImpl.Timer D
public static final TransactionImpl.Timer E
public static final TransactionImpl.Timer F
public static final TransactionImpl.Timer G
public static final TransactionImpl.Timer H
public static final TransactionImpl.Timer I
public static final TransactionImpl.Timer J
public static final TransactionImpl.Timer K
public static final TransactionImpl.Timer L
public static final TransactionImpl.Timer M
public static TransactionImpl.Timer[] values()
for (TransactionImpl.Timer c : TransactionImpl.Timer.values()) System.out.println(c);
public static TransactionImpl.Timer 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 nullCopyright © 2015. All Rights Reserved.