public enum DashboardScope extends Enum<DashboardScope>
DashboardScope enumeration:
Scope of the dashboard
Enum Constant and Description |
---|
APPLICATION
Application: Scope of dashboards limited to the application
|
MODEL
Model: Scope of dashboards without filtering
|
Modifier and Type | Method and Description |
---|---|
static DashboardScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DashboardScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DashboardScope APPLICATION
public static final DashboardScope MODEL
public static DashboardScope[] values()
for (DashboardScope c : DashboardScope.values()) System.out.println(c);
public static DashboardScope 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 © 2017. All rights reserved.