public enum BearerIpType extends java.lang.Enum<BearerIpType>
| Modifier and Type | Method and Description |
|---|---|
static BearerIpType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BearerIpType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BearerIpType NONE
public static final BearerIpType IPV4
public static final BearerIpType IPV6
public static final BearerIpType IPV4V6
public static final BearerIpType NON_IP
public static final BearerIpType ANY
public static BearerIpType[] values()
for (BearerIpType c : BearerIpType.values()) System.out.println(c);
public static BearerIpType 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