public enum CallerType extends java.lang.Enum<CallerType>
| Modifier and Type | Method and Description |
|---|---|
static CallerType |
fromString(java.lang.String name) |
static CallerType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CallerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CallerType BUSINESS
public static final CallerType CONSUMER
public static final CallerType UNKNOWN
public static CallerType[] values()
for (CallerType c : CallerType.values()) System.out.println(c);
public static CallerType 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 CallerType fromString(java.lang.String name)