public static enum Session.Role extends java.lang.Enum<Session.Role>
| Enum Constant and Description |
|---|
PROXY_NO_RECORD_ROUTE |
PROXY_RECORD_ROUTE |
UAC |
UAS |
UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
static Session.Role |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Session.Role[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Session.Role UNDEFINED
public static final Session.Role UAC
public static final Session.Role UAS
public static final Session.Role PROXY_RECORD_ROUTE
public static final Session.Role PROXY_NO_RECORD_ROUTE
public static Session.Role[] values()
for (Session.Role c : Session.Role.values()) System.out.println(c);
public static Session.Role 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.