
public enum MenuItem extends Enum<MenuItem>
| Enum Constant and Description |
|---|
CAR |
MANUFACTURER |
RATING |
REPORT |
STATS |
| Modifier and Type | Method and Description |
|---|---|
String |
getPlaceToken() |
String |
toString() |
static MenuItem |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MenuItem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MenuItem MANUFACTURER
public static final MenuItem CAR
public static final MenuItem RATING
public static final MenuItem REPORT
public static final MenuItem STATS
public static MenuItem[] values()
for (MenuItem c : MenuItem.values()) System.out.println(c);
public static MenuItem 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 getPlaceToken()
Copyright © 2010-2014 ArcBees. All Rights Reserved.