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