public enum Index extends Enum<Index>
| Enum Constant and Description |
|---|
ADVERTISEMENT |
APPLICATION |
APPTIS |
COLLECTION |
PGR |
SEWARAGE |
WATERCHARGES |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Index |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Index[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Index PGR
public static final Index APPLICATION
public static final Index WATERCHARGES
public static final Index COLLECTION
public static final Index ADVERTISEMENT
public static final Index APPTIS
public static final Index SEWARAGE
public static Index[] values()
for (Index c : Index.values()) System.out.println(c);
public static Index 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.