public static enum ViewInfo.ViewKind extends Enum<ViewInfo.ViewKind>
Enum Constant and Description |
---|
FLAT
Represents a plain
View . |
GROUP
Represents a
GroupView . |
Modifier and Type | Method and Description |
---|---|
static ViewInfo.ViewKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ViewInfo.ViewKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViewInfo.ViewKind FLAT
View
.public static final ViewInfo.ViewKind GROUP
GroupView
.public static ViewInfo.ViewKind[] values()
for (ViewInfo.ViewKind c : ViewInfo.ViewKind.values()) System.out.println(c);
public static ViewInfo.ViewKind 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 © 2011–2019 Asakusa Framework Team. All rights reserved.