public enum DestinationListType extends java.lang.Enum<DestinationListType>
DestinationListType
enum represents the types of DestinationListI
objects that can possibly be returned
from the POM server.Enum Constant and Description |
---|
Callback
The type of a
DestinationListI object that contains callback destinations. |
Consult
The type of a
DestinationListI object that contains consult destinations. |
Unknown |
Modifier and Type | Method and Description |
---|---|
static DestinationListType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DestinationListType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DestinationListType Consult
DestinationListI
object that contains consult destinations.public static final DestinationListType Callback
DestinationListI
object that contains callback destinations.public static final DestinationListType Unknown
public static DestinationListType[] values()
for (DestinationListType c : DestinationListType.values()) System.out.println(c);
public static DestinationListType 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