public static enum Beneficiary.BeneficiaryStatus extends Enum<Beneficiary.BeneficiaryStatus>
| Enum Constant and Description |
|---|
approved |
cancelled |
modified_for_pending_approval |
rejected |
waiting_for_confirmation |
| Modifier and Type | Method and Description |
|---|---|
static Beneficiary.BeneficiaryStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Beneficiary.BeneficiaryStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Beneficiary.BeneficiaryStatus approved
public static final Beneficiary.BeneficiaryStatus rejected
public static final Beneficiary.BeneficiaryStatus cancelled
public static final Beneficiary.BeneficiaryStatus waiting_for_confirmation
public static final Beneficiary.BeneficiaryStatus modified_for_pending_approval
public static Beneficiary.BeneficiaryStatus[] values()
for (Beneficiary.BeneficiaryStatus c : Beneficiary.BeneficiaryStatus.values()) System.out.println(c);
public static Beneficiary.BeneficiaryStatus 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 © 2021–2022 Dapi. All rights reserved.