public enum ContactType extends java.lang.Enum<ContactType>
A ContactType
identifies what type of media a UserI
, ResourceI
or InteractionI
object is
handling or is capable of handling.
Enum Constant and Description |
---|
EMail |
Fax |
OpenQ |
Outbound |
POM_Outbound |
Scanned_Document |
SMS |
Unknown |
Video |
Voice |
Voice_Mail |
Web_Communications |
Modifier and Type | Method and Description |
---|---|
static ContactType |
get(java.lang.String typeName) |
static ContactType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ContactType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContactType Voice
public static final ContactType EMail
public static final ContactType Web_Communications
public static final ContactType Outbound
public static final ContactType POM_Outbound
public static final ContactType Scanned_Document
public static final ContactType Fax
public static final ContactType SMS
public static final ContactType Voice_Mail
public static final ContactType Video
public static final ContactType OpenQ
public static final ContactType Unknown
public static ContactType[] values()
for (ContactType c : ContactType.values()) System.out.println(c);
public static ContactType 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 nullpublic static ContactType get(java.lang.String typeName)