public enum DashbuilderRuntimeMode extends Enum<DashbuilderRuntimeMode>
| Enum Constant and Description |
|---|
MULTIPLE_IMPORT
Users can import how many dashboards they want and reopen them later.
|
SINGLE_IMPORT
Allow users to import once
|
STATIC
Used when only the first import is used
|
| Modifier and Type | Method and Description |
|---|---|
static DashbuilderRuntimeMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DashbuilderRuntimeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DashbuilderRuntimeMode STATIC
public static final DashbuilderRuntimeMode SINGLE_IMPORT
public static final DashbuilderRuntimeMode MULTIPLE_IMPORT
public static DashbuilderRuntimeMode[] values()
for (DashbuilderRuntimeMode c : DashbuilderRuntimeMode.values()) System.out.println(c);
public static DashbuilderRuntimeMode 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 © 2012–2020 JBoss by Red Hat. All rights reserved.