| Enum Constant and Description |
|---|
ANOTHER |
ATTORNEY |
BANK_PAYING_AGENT |
BANK_PAYING_SUBAGENT |
COMMISSION_AGENT |
PAYING_AGENT |
PAYING_SUBAGENT |
| Modifier and Type | Method and Description |
|---|---|
static AgentSign |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AgentSign[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="bank_paying_agent") public static final AgentSign BANK_PAYING_AGENT
@SerializedName(value="bank_paying_subagent") public static final AgentSign BANK_PAYING_SUBAGENT
@SerializedName(value="paying_agent") public static final AgentSign PAYING_AGENT
@SerializedName(value="paying_subagent") public static final AgentSign PAYING_SUBAGENT
@SerializedName(value="attorney") public static final AgentSign ATTORNEY
@SerializedName(value="commission_agent") public static final AgentSign COMMISSION_AGENT
@SerializedName(value="another") public static final AgentSign ANOTHER
public static AgentSign[] values()
for (AgentSign c : AgentSign.values()) System.out.println(c);
public static AgentSign 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