public enum PageMode extends Enum<PageMode>
Enum Constant and Description |
---|
CHARTS
The charts.
|
DATAGRID
The datagrid.
|
INDICATORS
The indicators.
|
OVERVIEW
The overview.
|
PAGEVISITHISTORY
The pagevisithistory.
|
Modifier and Type | Method and Description |
---|---|
static PageMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PageMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageMode OVERVIEW
public static final PageMode CHARTS
public static final PageMode DATAGRID
public static final PageMode INDICATORS
public static final PageMode PAGEVISITHISTORY
public static PageMode[] values()
for (PageMode c : PageMode.values()) System.out.println(c);
public static PageMode 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 © 2008–2017 www.hack23.com. All rights reserved.