public static enum Target.TargetType extends Enum<Target.TargetType>
| Enum Constant and Description |
|---|
ACCOUNT |
BANK_ACCOUNT |
COUPON |
| Modifier and Type | Method and Description |
|---|---|
static Target.TargetType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Target.TargetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Target.TargetType ACCOUNT
public static final Target.TargetType BANK_ACCOUNT
public static final Target.TargetType COUPON
public static Target.TargetType[] values()
for (Target.TargetType c : Target.TargetType.values()) System.out.println(c);
public static Target.TargetType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All rights reserved.