public enum Beneficiary extends Enum<Beneficiary>
| Enum Constant and Description |
|---|
BC |
GENERAL |
MINORITY |
SC |
ST |
WOMEN_CHILDREN_WELFARE |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Beneficiary |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Beneficiary[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Beneficiary SC
public static final Beneficiary ST
public static final Beneficiary BC
public static final Beneficiary MINORITY
public static final Beneficiary WOMEN_CHILDREN_WELFARE
public static final Beneficiary GENERAL
public static Beneficiary[] values()
for (Beneficiary c : Beneficiary.values()) System.out.println(c);
public static Beneficiary 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 nullpublic String toString()
toString in class Enum<Beneficiary>Copyright © 2015–2017 eGovernments Foundation. All rights reserved.