public enum ReportTemplateType extends Enum<ReportTemplateType> implements HasName
| Enum Constant and Description |
|---|
ADVANCED
Exportable report views with all columns.
|
CUSTOM
Uploaded user reports.
|
DASHBOARD
Default dashboard.
|
PRELOADED
Used for other preloaded templates.
|
REPORT
Exportable report view with simplified columns.
|
UNKNOWN
Fallback when enumeration value is unknown.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
String |
getName() |
static ReportTemplateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReportTemplateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportTemplateType UNKNOWN
public static final ReportTemplateType CUSTOM
public static final ReportTemplateType REPORT
public static final ReportTemplateType ADVANCED
public static final ReportTemplateType DASHBOARD
public static final ReportTemplateType PRELOADED
public static ReportTemplateType[] values()
for (ReportTemplateType c : ReportTemplateType.values()) System.out.println(c);
public static ReportTemplateType 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 nullpublic int getCode()
Copyright © 2023. All rights reserved.