public enum SessionType extends Enum<SessionType>
Java class for sessionType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="sessionType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="NO_SESSION"/>
<enumeration value="OUTBOUND_SESSION"/>
<enumeration value="INBOUND_SESSION"/>
<enumeration value="FULL_SESSION"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
FULL_SESSION |
INBOUND_SESSION |
NO_SESSION |
OUTBOUND_SESSION |
| Modifier and Type | Method and Description |
|---|---|
static SessionType |
fromValue(String v) |
String |
value() |
static SessionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SessionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SessionType NO_SESSION
public static final SessionType OUTBOUND_SESSION
public static final SessionType INBOUND_SESSION
public static final SessionType FULL_SESSION
public static SessionType[] values()
for (SessionType c : SessionType.values()) System.out.println(c);
public static SessionType 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 nullpublic String value()
public static SessionType fromValue(String v)
Copyright © 2009,2013 Oracle and/or its affiliates. All rights reserved.