public enum SipRouteModifier extends Enum<SipRouteModifier>
| Enum Constant and Description |
|---|
NO_ROUTE
Indicates that SipApplicationRouterInfo.getRoute() does not contain any valid route.
|
ROUTE
Indicates that the route returned by SipApplicationRouterInfo.getRoute() is a valid route.
|
ROUTE_BACK
Tells the container to push a route back to itself before pusing the external routes specified by SipApplicationRouterInfo.getRoutes().
|
| Modifier and Type | Method and Description |
|---|---|
static SipRouteModifier |
valueOf(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.
|
public static final SipRouteModifier ROUTE_BACK
public static final SipRouteModifier NO_ROUTE
public static final SipRouteModifier ROUTE
public static SipRouteModifier[] values()
for (SipRouteModifier c : SipRouteModifier.values()) System.out.println(c);
public static SipRouteModifier valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All Rights Reserved.