public enum SenderType extends java.lang.Enum<SenderType>
| Enum Constant and Description |
|---|
CORPORATE |
GOVERNMENT |
INDIVIDUAL |
INSTRUMENT |
| Modifier and Type | Method and Description |
|---|---|
static SenderType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SenderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="instrument") public static final SenderType INSTRUMENT
@SerializedName(value="individual") public static final SenderType INDIVIDUAL
@SerializedName(value="corporate") public static final SenderType CORPORATE
@SerializedName(value="government") public static final SenderType GOVERNMENT
public static SenderType[] values()
for (SenderType c : SenderType.values()) System.out.println(c);
public static SenderType 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