public static enum UiView.Category extends java.lang.Enum<UiView.Category>
Enum Constant and Description |
---|
HIDDEN
Represents views that do not show in the navigation menu.
|
NETWORK
Represents network-control related views.
|
OTHER
Represents miscellaneous views.
|
PLATFORM
Represents platform related views.
|
Modifier and Type | Method and Description |
---|---|
static UiView.Category |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UiView.Category[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UiView.Category PLATFORM
public static final UiView.Category NETWORK
public static final UiView.Category OTHER
public static final UiView.Category HIDDEN
UiViewHidden
constructor instead of UiView
.public static UiView.Category[] values()
for (UiView.Category c : UiView.Category.values()) System.out.println(c);
public static UiView.Category 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