public enum SourceChannel extends java.lang.Enum<SourceChannel>
Enum Constant and Description |
---|
CALL_CENTRE
Call centre source channel.
|
INTERNET
Internet source channel.
|
MAIL_ORDER
Mail order source channel.
|
MOTO
Moto source channel.
|
TELEPHONE_ORDER
Telephone order source channel.
|
VOICE_RESPONSE
Voice response source channel.
|
Modifier and Type | Method and Description |
---|---|
static SourceChannel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SourceChannel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="CALL_CENTRE") public static final SourceChannel CALL_CENTRE
@SerializedName(value="INTERNET") public static final SourceChannel INTERNET
@SerializedName(value="MAIL_ORDER") public static final SourceChannel MAIL_ORDER
@SerializedName(value="MOTO") public static final SourceChannel MOTO
@SerializedName(value="TELEPHONE_ORDER") public static final SourceChannel TELEPHONE_ORDER
@SerializedName(value="VOICE_RESPONSE") public static final SourceChannel VOICE_RESPONSE
public static SourceChannel[] values()
for (SourceChannel c : SourceChannel.values()) System.out.println(c);
public static SourceChannel 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