public enum SipApplicationRoutingRegionType extends Enum<SipApplicationRoutingRegionType>
| Enum Constant and Description |
|---|
NEUTRAL
The NEUTRAL region contains applications that do not service a specific subscriber.
|
ORIGINATING
The ORIGINATING region contains applications that service the caller.
|
TERMINATING
The TERMINATING region contains applications that service the callee.
|
| Modifier and Type | Method and Description |
|---|---|
static SipApplicationRoutingRegionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SipApplicationRoutingRegionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SipApplicationRoutingRegionType ORIGINATING
public static final SipApplicationRoutingRegionType TERMINATING
public static final SipApplicationRoutingRegionType NEUTRAL
public static SipApplicationRoutingRegionType[] values()
for (SipApplicationRoutingRegionType c : SipApplicationRoutingRegionType.values()) System.out.println(c);
public static SipApplicationRoutingRegionType 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 © 1996-2015, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.