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