public enum GerritTopMenu extends java.lang.Enum<GerritTopMenu>
Enum Constant and Description |
---|
ALL |
DOCUMENTATION |
MY |
PEOPLE |
PLUGINS |
PROJECTS |
Modifier and Type | Field and Description |
---|---|
java.lang.String |
menuName |
Modifier and Type | Method and Description |
---|---|
static GerritTopMenu |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GerritTopMenu[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GerritTopMenu ALL
public static final GerritTopMenu MY
public static final GerritTopMenu PROJECTS
public static final GerritTopMenu PEOPLE
public static final GerritTopMenu PLUGINS
public static final GerritTopMenu DOCUMENTATION
public static GerritTopMenu[] values()
for (GerritTopMenu c : GerritTopMenu.values()) System.out.println(c);
public static GerritTopMenu valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null