|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<SipRouteModifier> javax.servlet.sip.ar.SipRouteModifier
public enum SipRouteModifier
Route modifiers as returned by the Application Router, used to interpret the routes returned from the router.
SipApplicationRouterInfo.getRouteModifier()
,
SipApplicationRouterInfo.getRoutes()
Enum Constant Summary | |
---|---|
NO_ROUTE
Indicates that the value returned by SipApplicationRouterInfo.getRoutes()
does not contain any valid routes and should be ignored. |
|
ROUTE
Indicates that the routes returned by SipApplicationRouterInfo.getRoutes()
are valid. |
|
ROUTE_BACK
Tells the container to push a route back to itself before pusing the external routes specified by SipApplicationRouterInfo.getRoutes() . |
Method Summary | |
---|---|
static SipRouteModifier |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static SipRouteModifier[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final SipRouteModifier ROUTE
SipApplicationRouterInfo.getRoutes()
are valid.
public static final SipRouteModifier ROUTE_BACK
SipApplicationRouterInfo.getRoutes()
.
public static final SipRouteModifier NO_ROUTE
SipApplicationRouterInfo.getRoutes()
does not contain any valid routes and should be ignored.
Method Detail |
---|
public static SipRouteModifier[] values()
for (SipRouteModifier c : SipRouteModifier.values()) System.out.println(c);
public static SipRouteModifier 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 name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |